func unicode/utf8.DecodeRune

34 uses

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

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

	bytes
		buffer.go#L363: 	r, n := utf8.DecodeRune(b.buf[b.off:])
		bytes.go#L45: 		_, size = utf8.DecodeRune(s)
		bytes.go#L161: 			r1, n := utf8.DecodeRune(s[i:])
		bytes.go#L229: 		r, width = utf8.DecodeRune(s[i:])
		bytes.go#L483: 			r, size = utf8.DecodeRune(s[i:])
		bytes.go#L561: 			r, wid = utf8.DecodeRune(s[i:])
		bytes.go#L705: 		_, wid := utf8.DecodeRune(s[i:])
		bytes.go#L782: 		_, wid := utf8.DecodeRune(s[i:])
		bytes.go#L837: 			r, wid = utf8.DecodeRune(s[start:])
		bytes.go#L975: 		r, l := utf8.DecodeRune(s)
		bytes.go#L1011: 				_, wid := utf8.DecodeRune(s[start:])
		bytes.go#L1044: 			r, size := utf8.DecodeRune(s)
		bytes.go#L1050: 			r, size := utf8.DecodeRune(t)
		reader.go#L98: 	ch, size = utf8.DecodeRune(r.s[r.i:])

	encoding/json
		decode.go#L1206: 		rr, size := utf8.DecodeRune(s[r:])
		decode.go#L1293: 			rr, size := utf8.DecodeRune(s[r:])
		encode.go#L1137: 		c, size := utf8.DecodeRune(s[i:])
		fold.go#L83: 		tr, size := utf8.DecodeRune(t)

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

	regexp
		regexp.go#L436: 		return utf8.DecodeRune(i.str[pos:])
		regexp.go#L466: 			r2, _ = utf8.DecodeRune(i.str[pos:])
		regexp.go#L641: 			_, width = utf8.DecodeRune(bsrc[searchPos:])
		regexp.go#L794: 				_, width = utf8.DecodeRune(b[pos:end])

	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:])