const unicode/utf8.RuneSelf

101 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#L380: 		if c < RuneSelf {
		utf8.go#L415: 		if c < RuneSelf {
		utf8.go#L469: 		if pi < RuneSelf {
		utf8.go#L515: 		if si < RuneSelf {

	bufio
		bufio.go#L295: 	if r >= utf8.RuneSelf {
		bufio.go#L673: 	if r < utf8.RuneSelf {
		scan.go#L310: 	if data[0] < utf8.RuneSelf {

	bytes
		buffer.go#L278: 	if r < utf8.RuneSelf {
		buffer.go#L358: 	if c < utf8.RuneSelf {
		bytes.go#L157: 	case 0 <= r && r < utf8.RuneSelf:
		bytes.go#L188: 		if r >= utf8.RuneSelf {
		bytes.go#L204: 		if r >= utf8.RuneSelf {
		bytes.go#L222: 		if r < utf8.RuneSelf {
		bytes.go#L276: 		if r >= utf8.RuneSelf {
		bytes.go#L291: 		if cr >= utf8.RuneSelf {
		bytes.go#L305: 		if r < utf8.RuneSelf {
		bytes.go#L423: 	if setBits >= utf8.RuneSelf {
		bytes.go#L482: 		if r >= utf8.RuneSelf {
		bytes.go#L560: 		if r >= utf8.RuneSelf {
		bytes.go#L616: 		if c >= utf8.RuneSelf {
		bytes.go#L647: 		if c >= utf8.RuneSelf {
		bytes.go#L699: 		if c < utf8.RuneSelf {
		bytes.go#L781: 	if i >= 0 && s[i] >= utf8.RuneSelf {
		bytes.go#L836: 		if r >= utf8.RuneSelf {
		bytes.go#L853: 		if r >= utf8.RuneSelf {
		bytes.go#L877: 		if c >= utf8.RuneSelf {
		bytes.go#L891: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L898: 			return r < utf8.RuneSelf && as.contains(byte(r))
		bytes.go#L936: 		if c >= utf8.RuneSelf {
		bytes.go#L950: 		if c >= utf8.RuneSelf {
		bytes.go#L1041: 		if s[0] < utf8.RuneSelf {
		bytes.go#L1047: 		if t[0] < utf8.RuneSelf {
		bytes.go#L1066: 		if tr < utf8.RuneSelf {
		reader.go#L94: 	if c := r.s[r.i]; c < utf8.RuneSelf {

	encoding/asn1
		asn1.go#L457: 		if b >= utf8.RuneSelf {
		marshal.go#L644: 				if r >= utf8.RuneSelf || !isPrintable(byte(r), rejectAsterisk, rejectAmpersand) {

	encoding/json
		decode.go#L1202: 		if c < utf8.RuneSelf {
		decode.go#L1286: 		case c < utf8.RuneSelf:
		encode.go#L1033: 		if b := s[i]; b < utf8.RuneSelf {
		encode.go#L1105: 		if b := s[i]; b < utf8.RuneSelf {
		fold.go#L37: 		if b >= utf8.RuneSelf {
		fold.go#L67: 		if tb < 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#L90: 	if r < utf8.RuneSelf {
		print.go#L1101: 		if verb >= utf8.RuneSelf {
		scan.go#L341: 	if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case

	mime
		encodedword.go#L335: 			if c >= utf8.RuneSelf {

	net/http
		http.go#L67: 		if s[i] >= utf8.RuneSelf {
		http.go#L88: 		if s[i] >= utf8.RuneSelf {
		http.go#L99: 		if s[i] >= utf8.RuneSelf {

	reflect
		type.go#L2338: 	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)

	regexp
		regexp.go#L386: 		if c < utf8.RuneSelf {
		regexp.go#L411: 		if r1 >= utf8.RuneSelf {
		regexp.go#L418: 		if r2 >= utf8.RuneSelf {
		regexp.go#L433: 		if c < utf8.RuneSelf {
		regexp.go#L458: 		if r1 >= utf8.RuneSelf {
		regexp.go#L465: 		if r2 >= utf8.RuneSelf {
		regexp.go#L708: 	return b < utf8.RuneSelf && specialBytes[b%16]&(1<<(b/16)) != 0

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

	strconv
		quote.go#L39: 		if r >= utf8.RuneSelf {
		quote.go#L72: 		if r < utf8.RuneSelf && IsPrint(r) {
		quote.go#L262: 	case c >= utf8.RuneSelf:
		quote.go#L425: 		if c < utf8.RuneSelf || !multibyte {

	strings
		builder.go#L106: 	if r < utf8.RuneSelf {
		reader.go#L93: 	if c := r.s[r.i]; c < utf8.RuneSelf {
		strings.go#L123: 	case 0 <= r && r < utf8.RuneSelf:
		strings.go#L149: 		if r >= utf8.RuneSelf {
		strings.go#L182: 		if rc >= utf8.RuneSelf {
		strings.go#L202: 		if rc >= utf8.RuneSelf {
		strings.go#L335: 	if setBits >= utf8.RuneSelf {
		strings.go#L503: 			if r < utf8.RuneSelf {
		strings.go#L554: 		if c >= utf8.RuneSelf {
		strings.go#L584: 		if c >= utf8.RuneSelf {
		strings.go#L658: 		if c < utf8.RuneSelf {
		strings.go#L741: 	if i >= 0 && s[i] >= utf8.RuneSelf {
		strings.go#L807: 		if c >= utf8.RuneSelf {
		strings.go#L821: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L828: 			return r < utf8.RuneSelf && as.contains(byte(r))
		strings.go#L872: 		if c >= utf8.RuneSelf {
		strings.go#L886: 		if c >= utf8.RuneSelf {
		strings.go#L974: 		if s[0] < utf8.RuneSelf {
		strings.go#L980: 		if t[0] < utf8.RuneSelf {
		strings.go#L999: 		if tr < utf8.RuneSelf {

	vendor/golang.org/x/net/http/httpguts
		httplex.go#L161: 		if b >= utf8.RuneSelf {
		httplex.go#L314: 		if s[i] >= utf8.RuneSelf {

	vendor/golang.org/x/net/http/httpproxy
		proxy.go#L315: 		if s[i] >= utf8.RuneSelf {

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L729: 		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 {