func unicode/utf8.DecodeRuneInString

38 uses

	unicode/utf8 (current package)
		utf8.go#L219: func DecodeRuneInString(s string) (r rune, size int) {
		utf8.go#L338: 	r, size = DecodeRuneInString(s[start:end])

	encoding/json
		encode.go#L1039: 		c, size := utf8.DecodeRuneInString(string(src[i : i+n]))

	fmt
		print.go#L1149: 		verb, size := utf8.DecodeRuneInString(format[i:])
		scan.go#L1102: 		fmtc, w := utf8.DecodeRuneInString(format[i:])
		scan.go#L1121: 				fmtc, w = utf8.DecodeRuneInString(format[i:])
		scan.go#L1161: 			nextc, _ := utf8.DecodeRuneInString(format[i+w:]) // will not match % if string is empty
		scan.go#L1209: 		c, w := utf8.DecodeRuneInString(format[i:])

	go.opentelemetry.io/otel/attribute
		value.go#L956: 		r, size := utf8.DecodeRuneInString(s[i:])

	go.opentelemetry.io/otel/trace
		auto.go#L400: 		_, size := utf8.DecodeRuneInString(s[i:])
		auto.go#L426: 		_, size := utf8.DecodeRuneInString(s[i:])

	mime
		encodedword.go#L96: 		_, runeLen = utf8.DecodeRuneInString(s[i:])
		encodedword.go#L130: 			_, runeLen = utf8.DecodeRuneInString(s[i:])

	path
		match.go#L134: 				r, n = utf8.DecodeRuneInString(s)
		match.go#L170: 				_, n := utf8.DecodeRuneInString(s)
		match.go#L209: 	r, n := utf8.DecodeRuneInString(chunk)

	path/filepath
		match.go#L135: 				r, n = utf8.DecodeRuneInString(s)
		match.go#L171: 				_, n := utf8.DecodeRuneInString(s)
		match.go#L212: 	r, n := utf8.DecodeRuneInString(chunk)

	strconv
		quote.go#L41: 		r, width = utf8.DecodeRuneInString(s)
		quote.go#L210: 		r, wid := utf8.DecodeRuneInString(s)
		quote.go#L266: 		r, size := utf8.DecodeRuneInString(s)
		quote.go#L435: 				r, n := utf8.DecodeRuneInString(in[len("'") : end-len("'")])

	strings
		iter.go#L40: 				_, size := utf8.DecodeRuneInString(s)
		iter.go#L91: 				r, size = utf8.DecodeRuneInString(s[i:])
		iter.go#L120: 			r, size := utf8.DecodeRuneInString(s[i:])
		reader.go#L93: 	ch, size = utf8.DecodeRuneInString(r.s[r.i:])
		strings.go#L30: 		_, size := utf8.DecodeRuneInString(s)
		strings.go#L549: 			c, width = utf8.DecodeRuneInString(s[i:])
		strings.go#L798: 		_, wid := utf8.DecodeRuneInString(s[i:])
		strings.go#L821: 		_, wid := utf8.DecodeRuneInString(s[i:])
		strings.go#L900: 		_, wid := utf8.DecodeRuneInString(s[i:])
		strings.go#L1031: 		r, n := utf8.DecodeRuneInString(s)
		strings.go#L1164: 			_, wid := utf8.DecodeRuneInString(s[start:])
		strings.go#L1225: 		tr, size := utf8.DecodeRuneInString(t)

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L453: 			r, _ := utf8.DecodeRuneInString(s[i:])
		idna10.0.0.go#L506: 				r, _ := utf8.DecodeRuneInString(s[start:])

	vendor/golang.org/x/text/unicode/norm
		input.go#L98: 		r, size = utf8.DecodeRuneInString(in.str[p:])