encoding/json.decodeState.data (field)

14 uses

	encoding/json (current package)
		decode.go#L205: 	data         []byte
		decode.go#L229: 	d.data = data
		decode.go#L262: 	s, data, i := &d.scan, d.data, d.off
		decode.go#L277: 	if d.off < len(d.data) {
		decode.go#L278: 		d.opcode = d.scan.step(&d.scan, d.data[d.off])
		decode.go#L282: 		d.off = len(d.data) + 1 // mark processed EOF with len+1
		decode.go#L289: 	s, data, i := &d.scan, d.data, d.off
		decode.go#L313: 	data, i := d.data, d.off
		decode.go#L384: 			if err := d.literalStore(d.data[start:d.readIndex()], v, false); err != nil {
		decode.go#L503: 		return u.UnmarshalJSON(d.data[start:d.off])
		decode.go#L609: 		return u.UnmarshalJSON(d.data[start:d.off])
		decode.go#L676: 		item := d.data[start:d.readIndex()]
		decode.go#L1088: 		item := d.data[start:d.readIndex()]
		decode.go#L1128: 	item := d.data[start:d.readIndex()]