const unicode/utf8.RuneSelf

107 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#L314: 	if r >= utf8.RuneSelf {
		bufio.go#L717: 	if uint32(r) < utf8.RuneSelf {
		scan.go#L310: 	if data[0] < utf8.RuneSelf {

	bytes
		buffer.go#L301: 	if uint32(r) < utf8.RuneSelf {
		buffer.go#L380: 	if c < utf8.RuneSelf {
		bytes.go#L162: 	case 0 <= r && r < utf8.RuneSelf:
		bytes.go#L193: 		if r >= utf8.RuneSelf {
		bytes.go#L209: 		if r >= utf8.RuneSelf {
		bytes.go#L227: 		if r < utf8.RuneSelf {
		bytes.go#L281: 		if r >= utf8.RuneSelf {
		bytes.go#L296: 		if cr >= utf8.RuneSelf {
		bytes.go#L310: 		if r < utf8.RuneSelf {
		bytes.go#L437: 	if setBits >= utf8.RuneSelf {
		bytes.go#L496: 		if r >= utf8.RuneSelf {
		bytes.go#L582: 		if r >= utf8.RuneSelf {
		bytes.go#L654: 		if c >= utf8.RuneSelf {
		bytes.go#L685: 		if c >= utf8.RuneSelf {
		bytes.go#L737: 		if c < utf8.RuneSelf {
		bytes.go#L820: 	if i >= 0 && s[i] >= utf8.RuneSelf {
		bytes.go#L875: 		if r >= utf8.RuneSelf {
		bytes.go#L892: 		if r >= utf8.RuneSelf {
		bytes.go#L918: 		if c >= utf8.RuneSelf {
		bytes.go#L953: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L972: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1009: 		if r >= utf8.RuneSelf {
		bytes.go#L1030: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1059: 		if r >= utf8.RuneSelf {
		bytes.go#L1077: 		if c >= utf8.RuneSelf {
		bytes.go#L1091: 		if c >= utf8.RuneSelf {
		bytes.go#L1184: 		if sr|tr >= utf8.RuneSelf {
		bytes.go#L1212: 		if s[0] < utf8.RuneSelf {
		bytes.go#L1218: 		if t[0] < utf8.RuneSelf {
		bytes.go#L1237: 		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#L644: 				if r >= utf8.RuneSelf || !isPrintable(byte(r), rejectAsterisk, rejectAmpersand) {

	encoding/json
		decode.go#L1194: 		if c < utf8.RuneSelf {
		decode.go#L1278: 		case c < utf8.RuneSelf:
		encode.go#L967: 		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#L347: 			if b[i] >= utf8.RuneSelf {
		print.go#L1152: 		if verb >= utf8.RuneSelf {
		scan.go#L341: 	if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case

	github.com/go-faster/jx
		w_str_escape.go#L16: var htmlSafeSet = [utf8.RuneSelf]bool{
		w_str_escape.go#L135: 		if c >= utf8.RuneSelf || !(htmlSafeSet[c]) {
		w_str_escape.go#L150: 		if b := v[i]; b < utf8.RuneSelf {

	go.uber.org/zap/zapcore
		json_encoder.go#L527: 		if s[i] >= utf8.RuneSelf {

	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#L2123: 	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)

	regexp
		regexp.go#L394: 		if c < utf8.RuneSelf {
		regexp.go#L419: 		if r1 >= utf8.RuneSelf {
		regexp.go#L426: 		if r2 >= utf8.RuneSelf {
		regexp.go#L441: 		if c < utf8.RuneSelf {
		regexp.go#L466: 		if r1 >= utf8.RuneSelf {
		regexp.go#L473: 		if r2 >= utf8.RuneSelf {
		regexp.go#L716: 	return b < utf8.RuneSelf && specialBytes[b%16]&(1<<(b/16)) != 0

	regexp/syntax
		parse.go#L1456: 		if c < utf8.RuneSelf && !isalnum(c) {

	strconv
		quote.go#L43: 		if r >= utf8.RuneSelf {
		quote.go#L76: 		if r < utf8.RuneSelf && IsPrint(r) {
		quote.go#L272: 	case c >= utf8.RuneSelf:
		quote.go#L471: 				if r < utf8.RuneSelf || !multibyte {

	strings
		reader.go#L93: 	if c := r.s[r.i]; c < utf8.RuneSelf {
		strings.go#L127: 	case 0 <= r && r < utf8.RuneSelf:
		strings.go#L153: 		if r >= utf8.RuneSelf {
		strings.go#L186: 		if rc >= utf8.RuneSelf {
		strings.go#L206: 		if rc >= utf8.RuneSelf {
		strings.go#L348: 	if setBits >= utf8.RuneSelf {
		strings.go#L526: 			if r < utf8.RuneSelf {
		strings.go#L605: 		if c >= utf8.RuneSelf {
		strings.go#L645: 		if c >= utf8.RuneSelf {
		strings.go#L729: 		if c < utf8.RuneSelf {
		strings.go#L813: 	if i >= 0 && s[i] >= utf8.RuneSelf {
		strings.go#L881: 		if c >= utf8.RuneSelf {
		strings.go#L900: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L917: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L946: 		if r >= utf8.RuneSelf {
		strings.go#L965: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L994: 		if r >= utf8.RuneSelf {
		strings.go#L1012: 		if c >= utf8.RuneSelf {
		strings.go#L1026: 		if c >= utf8.RuneSelf {
		strings.go#L1117: 		if sr|tr >= utf8.RuneSelf {
		strings.go#L1150: 		if t[0] < utf8.RuneSelf {
		strings.go#L1169: 		if tr < utf8.RuneSelf {

	vendor/golang.org/x/net/http/httpguts
		httplex.go#L163: 		if b >= utf8.RuneSelf {
		httplex.go#L320: 		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#L765: 		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 {