const unicode/utf8.RuneSelf
104 uses
unicode/utf8 (current package)
utf8.go#L17: RuneSelf = 0x80 // characters below RuneSelf are represented as themselves in a single byte.
utf8.go#L254: if r < RuneSelf {
utf8.go#L294: if r < RuneSelf {
utf8.go#L406: if c < RuneSelf {
utf8.go#L441: if c < RuneSelf {
utf8.go#L500: if pi < RuneSelf {
utf8.go#L546: if si < RuneSelf {
bufio
bufio.go#L311: if r >= utf8.RuneSelf {
bufio.go#L714: if uint32(r) < utf8.RuneSelf {
scan.go#L315: if data[0] < utf8.RuneSelf {
bytes
buffer.go#L301: if uint32(r) < utf8.RuneSelf {
buffer.go#L380: if c < utf8.RuneSelf {
bytes.go#L140: case 0 <= r && r < utf8.RuneSelf:
bytes.go#L171: if r >= utf8.RuneSelf {
bytes.go#L187: if r >= utf8.RuneSelf {
bytes.go#L205: if r < utf8.RuneSelf {
bytes.go#L259: if r >= utf8.RuneSelf {
bytes.go#L274: if cr >= utf8.RuneSelf {
bytes.go#L288: if r < utf8.RuneSelf {
bytes.go#L413: if setBits >= utf8.RuneSelf {
bytes.go#L472: if r >= utf8.RuneSelf {
bytes.go#L558: if r >= utf8.RuneSelf {
bytes.go#L642: if c >= utf8.RuneSelf {
bytes.go#L673: if c >= utf8.RuneSelf {
bytes.go#L725: if c < utf8.RuneSelf {
bytes.go#L808: if i >= 0 && s[i] >= utf8.RuneSelf {
bytes.go#L863: if r >= utf8.RuneSelf {
bytes.go#L880: if r >= utf8.RuneSelf {
bytes.go#L906: if c >= utf8.RuneSelf {
bytes.go#L941: if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
bytes.go#L960: if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
bytes.go#L997: if r >= utf8.RuneSelf {
bytes.go#L1018: if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
bytes.go#L1047: if r >= utf8.RuneSelf {
bytes.go#L1065: if c >= utf8.RuneSelf {
bytes.go#L1079: if c >= utf8.RuneSelf {
bytes.go#L1172: if sr|tr >= utf8.RuneSelf {
bytes.go#L1200: if s[0] < utf8.RuneSelf {
bytes.go#L1206: if t[0] < utf8.RuneSelf {
bytes.go#L1225: if tr < utf8.RuneSelf {
reader.go#L93: if c := r.s[r.i]; c < utf8.RuneSelf {
encoding/asn1
asn1.go#L460: if b >= utf8.RuneSelf {
marshal.go#L641: if r >= utf8.RuneSelf || !isPrintable(byte(r), rejectAsterisk, rejectAmpersand) {
encoding/json
decode.go#L1205: if c < utf8.RuneSelf {
decode.go#L1289: case c < utf8.RuneSelf:
encode.go#L971: if b := src[i]; b < utf8.RuneSelf {
fold.go#L23: if c := in[i]; c < utf8.RuneSelf {
tables.go#L15: var safeSet = [utf8.RuneSelf]bool{
tables.go#L121: var htmlSafeSet = [utf8.RuneSelf]bool{
fmt
format.go#L350: if b[i] >= utf8.RuneSelf {
print.go#L1149: if verb >= utf8.RuneSelf {
scan.go#L341: if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case
mime
encodedword.go#L325: if c >= utf8.RuneSelf {
net/http
http.go#L79: if s[i] >= utf8.RuneSelf {
http.go#L91: if s[i] >= utf8.RuneSelf {
reflect
type.go#L2274: return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)
regexp
regexp.go#L388: if c < utf8.RuneSelf {
regexp.go#L413: if r1 >= utf8.RuneSelf {
regexp.go#L420: if r2 >= utf8.RuneSelf {
regexp.go#L435: if c < utf8.RuneSelf {
regexp.go#L460: if r1 >= utf8.RuneSelf {
regexp.go#L467: if r2 >= utf8.RuneSelf {
regexp.go#L710: return b < utf8.RuneSelf && specialBytes[b%16]&(1<<(b/16)) != 0
regexp/syntax
parse.go#L1457: if c < utf8.RuneSelf && !isalnum(c) {
strconv
quote.go#L43: if r >= utf8.RuneSelf {
quote.go#L75: if r < utf8.RuneSelf && IsPrint(r) {
quote.go#L269: case c >= utf8.RuneSelf:
quote.go#L468: if r < utf8.RuneSelf || !multibyte {
strings
reader.go#L93: if c := r.s[r.i]; c < utf8.RuneSelf {
strings.go#L128: case 0 <= r && r < utf8.RuneSelf:
strings.go#L154: if r >= utf8.RuneSelf {
strings.go#L187: if rc >= utf8.RuneSelf {
strings.go#L207: if rc >= utf8.RuneSelf {
strings.go#L342: if setBits >= utf8.RuneSelf {
strings.go#L520: if r < utf8.RuneSelf {
strings.go#L637: if c >= utf8.RuneSelf {
strings.go#L677: if c >= utf8.RuneSelf {
strings.go#L761: if c < utf8.RuneSelf {
strings.go#L845: if i >= 0 && s[i] >= utf8.RuneSelf {
strings.go#L913: if c >= utf8.RuneSelf {
strings.go#L932: if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
strings.go#L949: if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
strings.go#L978: if r >= utf8.RuneSelf {
strings.go#L997: if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
strings.go#L1026: if r >= utf8.RuneSelf {
strings.go#L1044: if c >= utf8.RuneSelf {
strings.go#L1058: if c >= utf8.RuneSelf {
strings.go#L1143: if sr|tr >= utf8.RuneSelf {
strings.go#L1176: if t[0] < utf8.RuneSelf {
strings.go#L1195: if tr < utf8.RuneSelf {
vendor/golang.org/x/net/http/httpguts
httplex.go#L96: return r < utf8.RuneSelf && isTokenTable[byte(r)]
httplex.go#L158: if b >= utf8.RuneSelf {
httplex.go#L315: if s[i] >= utf8.RuneSelf {
vendor/golang.org/x/net/http/httpproxy
proxy.go#L317: if s[i] >= utf8.RuneSelf {
vendor/golang.org/x/net/idna
idna10.0.0.go#L764: if s[i] >= utf8.RuneSelf {
vendor/golang.org/x/text/secure/bidirule
bidirule.go#L261: if s[n] < utf8.RuneSelf {
bidirule.go#L303: if s[n] < utf8.RuneSelf {
vendor/golang.org/x/text/transform
transform.go#L509: if r = rune(src[0]); r < utf8.RuneSelf {
vendor/golang.org/x/text/unicode/norm
input.go#L41: for ; p < max && in.str[p] < utf8.RuneSelf; p++ {
input.go#L44: for ; p < max && in.bytes[p] < utf8.RuneSelf; p++ {
iter.go#L135: if i.rb.src.bytes[p] < utf8.RuneSelf {
iter.go#L152: if i.rb.src.str[p] < utf8.RuneSelf {
iter.go#L236: } else if i.rb.src._byte(i.p) < utf8.RuneSelf {
iter.go#L392: } else if i.rb.src._byte(i.p) < utf8.RuneSelf {
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |