const unicode/utf8.RuneSelf

141 uses

	unicode/utf8 (current package)
		utf8.go#L17: 	RuneSelf  = 0x80         // characters below RuneSelf are represented as themselves in a single byte.
		utf8.go#L162: 		if b < RuneSelf {
		utf8.go#L223: 	if s != "" && s[0] < RuneSelf {
		utf8.go#L286: 	if r < RuneSelf {
		utf8.go#L323: 	if r < RuneSelf {
		utf8.go#L438: 		if c := p[n]; c >= RuneSelf {
		utf8.go#L478: 		if p0 < RuneSelf {
		utf8.go#L525: 		if s0 < RuneSelf {

	bufio
		bufio.go#L717: 	if uint32(r) < utf8.RuneSelf {
		scan.go#L318: 	if data[0] < utf8.RuneSelf {

	bytes
		buffer.go#L319: 	if uint32(r) < utf8.RuneSelf {
		buffer.go#L398: 	if c < utf8.RuneSelf {
		bytes.go#L142: 	case 0 <= r && r < utf8.RuneSelf:
		bytes.go#L228: 		if r >= utf8.RuneSelf {
		bytes.go#L244: 		if r >= utf8.RuneSelf {
		bytes.go#L262: 		if r < utf8.RuneSelf {
		bytes.go#L316: 		if r >= utf8.RuneSelf {
		bytes.go#L331: 		if cr >= utf8.RuneSelf {
		bytes.go#L345: 		if r < utf8.RuneSelf {
		bytes.go#L472: 	if setBits >= utf8.RuneSelf {
		bytes.go#L693: 		if c >= utf8.RuneSelf {
		bytes.go#L724: 		if c >= utf8.RuneSelf {
		bytes.go#L776: 		if c < utf8.RuneSelf {
		bytes.go#L859: 	if i >= 0 && s[i] >= utf8.RuneSelf {
		bytes.go#L927: 		if r >= utf8.RuneSelf {
		bytes.go#L953: 		if c >= utf8.RuneSelf {
		bytes.go#L988: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1007: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1062: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1091: 		if r >= utf8.RuneSelf {
		bytes.go#L1107: 		if c >= utf8.RuneSelf {
		bytes.go#L1119: 			if c >= utf8.RuneSelf {
		bytes.go#L1212: 		if sr|tr >= utf8.RuneSelf {
		bytes.go#L1256: 		if tr < utf8.RuneSelf {
		iter.go#L90: 			if r >= utf8.RuneSelf {
		reader.go#L93: 	if c := r.s[r.i]; c < utf8.RuneSelf {

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

	encoding/json
		decode.go#L1288: 		case c < utf8.RuneSelf:
		encode.go#L1003: 		if b := src[i]; b < utf8.RuneSelf {
		fold.go#L25: 		if c := in[i]; c < utf8.RuneSelf {
		tables.go#L17: var safeSet = [utf8.RuneSelf]bool{
		tables.go#L123: var htmlSafeSet = [utf8.RuneSelf]bool{

	encoding/xml
		xml.go#L1210: 	if b < utf8.RuneSelf && !isNameByte(b) {
		xml.go#L1220: 		if b < utf8.RuneSelf && !isNameByte(b) {

	expvar
		expvar.go#L409: 		case r < utf8.RuneSelf:

	fmt
		scan.go#L341: 	if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case

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

	go/build
		build.go#L1844: 		if c := s[i]; c < utf8.RuneSelf && strings.IndexByte(safeString, c) < 0 {
		read.go#L56: 	return 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c >= utf8.RuneSelf

	go/doc
		reader.go#L994: 			ch >= utf8.RuneSelf && (unicode.IsLetter(ch) || unicode.IsDigit(ch)))

	go/doc/comment
		parse.go#L1168: 		if c := s[n]; c < utf8.RuneSelf {

	go/scanner
		scanner.go#L79: 		case r >= utf8.RuneSelf:
		scanner.go#L329: 	return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)
		scanner.go#L333: 	return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)
		scanner.go#L357: 		if 0 < b && b < utf8.RuneSelf {

	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 {

	golang.org/x/net/idna
		idna10.0.0.go#L764: 		if s[i] >= utf8.RuneSelf {

	golang.org/x/text/cases
		map.go#L589: 	if r := c.src[c.pSrc]; r < utf8.RuneSelf {

	golang.org/x/text/runes
		cond.go#L122: 			if r < utf8.RuneSelf {
		cond.go#L163: 			if r < utf8.RuneSelf {
		runes.go#L112: 		if r = rune(src[n]); r < utf8.RuneSelf {
		runes.go#L135: 		if r = rune(src[nSrc]); r < utf8.RuneSelf {
		runes.go#L191: 		if r = rune(src[n]); r < utf8.RuneSelf {
		runes.go#L216: 		if r = rune(src[nSrc]); r < utf8.RuneSelf {
		runes.go#L217: 			if replacement = t(r); replacement < utf8.RuneSelf {
		runes.go#L286: 		if src[n] < utf8.RuneSelf {
		runes.go#L315: 		if r := src[nSrc]; r < utf8.RuneSelf {

	golang.org/x/text/secure/bidirule
		bidirule.go#L261: 		if s[n] < utf8.RuneSelf {
		bidirule.go#L303: 		if s[n] < utf8.RuneSelf {

	golang.org/x/text/secure/precis
		profile.go#L153: 		if c >= utf8.RuneSelf {

	golang.org/x/text/transform
		transform.go#L509: 		if r = rune(src[0]); r < utf8.RuneSelf {

	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 {

	golang.org/x/text/width
		transform.go#L19: 		if src[n] < utf8.RuneSelf {
		transform.go#L21: 			for n++; n < len(src) && src[n] < utf8.RuneSelf; n++ {
		transform.go#L45: 		if src[nSrc] < utf8.RuneSelf {
		transform.go#L51: 			for nSrc++; nSrc < end && src[nSrc] < utf8.RuneSelf; nSrc++ {
		transform.go#L59: 				if src[nSrc] < utf8.RuneSelf {
		transform.go#L101: 		if src[n] < utf8.RuneSelf {
		transform.go#L103: 			for n++; n < len(src) && src[n] < utf8.RuneSelf; n++ {
		transform.go#L128: 		if src[nSrc] < utf8.RuneSelf {
		transform.go#L134: 			for nSrc++; nSrc < end && src[nSrc] < utf8.RuneSelf; nSrc++ {
		transform.go#L142: 				if src[nSrc] < utf8.RuneSelf {
		width.go#L92: 	if r >= utf8.RuneSelf {

	google.golang.org/protobuf/internal/encoding/text
		decode.go#L665: 		if r > utf8.RuneSelf || (r != '/' && isDelim(byte(r))) {
		encode.go#L146: 		case r >= utf8.RuneSelf && (outputASCII || r <= 0x009f):

	html/template
		css.go#L250: 			if c < utf8.RuneSelf && isCSSNmchar(rune(c)) {

	log/slog
		json_handler.go#L189: 		if b := s[i]; b < utf8.RuneSelf {
		json_handler.go#L262: var safeSet = [utf8.RuneSelf]bool{
		text_handler.go#L145: 		if b < utf8.RuneSelf {

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

	net/http
		http.go#L142: 		if s[i] >= utf8.RuneSelf {
		http.go#L154: 		if s[i] >= utf8.RuneSelf {

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

	regexp
		regexp.go#L690: 	return b < utf8.RuneSelf && specialBytes[b%16]&(1<<(b/16)) != 0

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

	strconv
		quote.go#L71: 		if r < utf8.RuneSelf && IsPrint(r) {
		quote.go#L265: 	case c >= utf8.RuneSelf:
		quote.go#L465: 				if r < utf8.RuneSelf || !multibyte {

	strings
		iter.go#L90: 			if r >= utf8.RuneSelf {
		strings.go#L130: 	case 0 <= r && r < utf8.RuneSelf:
		strings.go#L209: 		if r >= utf8.RuneSelf {
		strings.go#L242: 		if rc >= utf8.RuneSelf {
		strings.go#L262: 		if rc >= utf8.RuneSelf {
		strings.go#L399: 	if setBits >= utf8.RuneSelf {
		strings.go#L579: 			if r < utf8.RuneSelf {
		strings.go#L691: 		if c >= utf8.RuneSelf {
		strings.go#L731: 		if c >= utf8.RuneSelf {
		strings.go#L815: 		if c < utf8.RuneSelf {
		strings.go#L967: 		if c >= utf8.RuneSelf {
		strings.go#L986: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L1003: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L1048: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L1077: 		if r >= utf8.RuneSelf {
		strings.go#L1094: 		if c >= utf8.RuneSelf {
		strings.go#L1106: 			if c >= utf8.RuneSelf {
		strings.go#L1193: 		if sr|tr >= utf8.RuneSelf {
		strings.go#L1240: 		if tr < utf8.RuneSelf {

	text/template
		funcs.go#L680: 		if c < utf8.RuneSelf {
		funcs.go#L735: 	return r < ' ' || utf8.RuneSelf <= r

	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 {