const unicode/utf8.RuneSelf

156 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{

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

	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

	github.com/ghodss/yaml
		fields.go#L360: 		if b >= utf8.RuneSelf {
		fields.go#L390: 		if tb < utf8.RuneSelf {

	github.com/golang/protobuf/proto
		text_decode.go#L689: 			if r < utf8.RuneSelf {

	github.com/google/licensecheck/internal/match
		dict.go#L275: 	if r < utf8.RuneSelf {

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

	go/scanner
		scanner.go#L67: 		case r >= utf8.RuneSelf:
		scanner.go#L343: 	return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)
		scanner.go#L347: 	return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)

	golang.org/x/mod/module
		module.go#L233: 	if r < utf8.RuneSelf {
		module.go#L248: 	if r < utf8.RuneSelf {
		module.go#L662: 		if r == '!' || r >= utf8.RuneSelf {
		module.go#L720: 		if r >= utf8.RuneSelf {

	golang.org/x/mod/zip
		zip.go#L807: 		if c >= utf8.RuneSelf || 'A' <= c && c <= 'Z' {

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

	golang.org/x/net/idna
		idna10.0.0.go#L730: 		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
		encode.go#L146: 		case outputASCII && r >= utf8.RuneSelf:
		encode.go#L171: 		if c := s[i]; c < ' ' || c == '"' || c == '\'' || c == '\\' || c >= utf8.RuneSelf {

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

	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 {

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

	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 {