func unicode/utf8.DecodeRune

34 uses

	unicode/utf8 (current package)
		utf8.go#L157: func DecodeRune(p []byte) (r rune, size int) {
		utf8.go#L301: 	r, size = DecodeRune(p[start:end])

	bufio
		bufio.go#L314: 	r, size = utf8.DecodeRune(b.buf[b.r:b.w])
		scan.go#L323: 	_, width := utf8.DecodeRune(data)
		scan.go#L408: 		r, width = utf8.DecodeRune(data[start:])
		scan.go#L416: 		r, width = utf8.DecodeRune(data[i:])

	bytes
		buffer.go#L403: 	r, n := utf8.DecodeRune(b.buf[b.off:])
		bytes.go#L47: 		_, size = utf8.DecodeRune(s)
		bytes.go#L146: 			r1, n := utf8.DecodeRune(s[i:])
		bytes.go#L269: 		r, width = utf8.DecodeRune(s[i:])
		bytes.go#L531: 		r, size := utf8.DecodeRune(s[i:])
		bytes.go#L613: 		r, wid := utf8.DecodeRune(s[i:])
		bytes.go#L782: 		_, wid := utf8.DecodeRune(s[i:])
		bytes.go#L860: 		_, wid := utf8.DecodeRune(s[i:])
		bytes.go#L912: 		r, wid := utf8.DecodeRune(s[start:])
		bytes.go#L1043: 		r, n := utf8.DecodeRune(s)
		bytes.go#L1141: 		r, l := utf8.DecodeRune(s)
		bytes.go#L1183: 			_, wid := utf8.DecodeRune(s[start:])
		bytes.go#L1239: 		sr, size := utf8.DecodeRune(s)
		bytes.go#L1241: 		tr, size := utf8.DecodeRune(t)
		iter.go#L40: 				_, size := utf8.DecodeRune(s)
		iter.go#L91: 				r, size = utf8.DecodeRune(s[i:])
		iter.go#L120: 			r, size := utf8.DecodeRune(s[i:])
		reader.go#L97: 	ch, size = utf8.DecodeRune(r.s[r.i:])

	encoding/json
		decode.go#L1208: 		rr, size := utf8.DecodeRune(s[r:])
		decode.go#L1295: 			rr, size := utf8.DecodeRune(s[r:])
		fold.go#L34: 		r, n := utf8.DecodeRune(in[i:])

	fmt
		format.go#L349: 			_, wid := utf8.DecodeRune(b[i:])
		scan.go#L359: 	rr, size = utf8.DecodeRune(r.buf[:n])

	github.com/go-faster/jx/internal/byteseq
		byteseq.go#L15: 	return utf8.DecodeRune(tmp[:n])

	vendor/golang.org/x/text/transform
		transform.go#L512: 			r, sz = utf8.DecodeRune(src)

	vendor/golang.org/x/text/unicode/norm
		composition.go#L296: 	r, _ := utf8.DecodeRune(rb.byte[inf.pos : inf.pos+inf.size])
		composition.go#L387: 	c, _ := utf8.DecodeRune(b)
		input.go#L103: 		r, size = utf8.DecodeRune(in.bytes[p:])