func reflect.ValueOf

83 uses

	reflect (current package)
		deepequal.go#L233: 	v1 := ValueOf(x)
		deepequal.go#L234: 	v2 := ValueOf(y)
		iter.go#L18: 			tmp := ValueOf(i)
		iter.go#L42: 				return []Value{ValueOf(yield(in[0]))}
		iter.go#L77: 				if !yield(ValueOf(i)) {
		iter.go#L85: 				if !yield(ValueOf(i)) {
		iter.go#L93: 				if !yield(ValueOf(i)) {
		iter.go#L128: 				return []Value{ValueOf(yield(in[0], in[1]))}
		iter.go#L141: 				if !yield(ValueOf(i), v.Index(i)) {
		iter.go#L149: 				if !yield(ValueOf(i), v.Index(i)) {
		iter.go#L157: 				if !yield(ValueOf(i), ValueOf(v)) {
		swapper.go#L19: 	v := ValueOf(slice)
		value.go#L3119: func ValueOf(i any) Value {

	encoding/asn1
		asn1.go#L771: 			v.Set(reflect.ValueOf(result))
		asn1.go#L971: 			val.Field(0).Set(reflect.ValueOf(RawContent(bytes)))
		asn1.go#L993: 			reflect.Copy(val, reflect.ValueOf(innerBytes))
		asn1.go#L1164: 	v := reflect.ValueOf(val)
		marshal.go#L742: 	e, err := makeField(reflect.ValueOf(val), parseFieldParameters(params))

	encoding/binary
		binary.go#L272: 	v := reflect.ValueOf(data)
		binary.go#L309: 	v := reflect.ValueOf(data)
		binary.go#L423: 	v := reflect.Indirect(reflect.ValueOf(data))
		binary.go#L452: 	v := reflect.Indirect(reflect.ValueOf(data))
		binary.go#L479: 	v := reflect.Indirect(reflect.ValueOf(data))
		binary.go#L689: 	return dataSize(reflect.Indirect(reflect.ValueOf(v)))

	encoding/json
		decode.go#L174: 	rv := reflect.ValueOf(v)
		decode.go#L528: 			v.Set(reflect.ValueOf(ai))
		decode.go#L623: 		v.Set(reflect.ValueOf(oi))
		decode.go#L928: 				v.Set(reflect.ValueOf(value))
		decode.go#L965: 				v.Set(reflect.ValueOf(string(s)))
		decode.go#L1000: 			v.Set(reflect.ValueOf(n))
		encode.go#L343: 	e.reflectValue(reflect.ValueOf(v), opts)

	fmt
		print.go#L546: 		p.printValue(reflect.ValueOf(v), verb, 0)
		print.go#L593: 		if v := reflect.ValueOf(arg); v.Kind() == reflect.Pointer && v.IsNil() {
		print.go#L703: 		p.fmtPointer(reflect.ValueOf(arg), 'p')
		print.go#L760: 			p.printValue(reflect.ValueOf(f), verb, 0)
		print.go#L941: 			switch v := reflect.ValueOf(a[argNum]); v.Kind() {
		scan.go#L1018: 		val := reflect.ValueOf(v)

	github.com/gotd/td/tdp
		tdp.go#L92: 	v := reflect.ValueOf(obj).Elem()

	go.opentelemetry.io/otel/attribute
		hash.go#L67: 		rv := reflect.ValueOf(v.slice)
		hash.go#L73: 		rv := reflect.ValueOf(v.slice)
		hash.go#L79: 		rv := reflect.ValueOf(v.slice)
		hash.go#L85: 		rv := reflect.ValueOf(v.slice)
		hash.go#L108: 			rv := reflect.ValueOf(v.slice)
		set.go#L98: 	return reflect.ValueOf(l.data)
		value.go#L269: 	rv := reflect.ValueOf(v)
		value.go#L275: 		_ = reflect.Copy(reflect.ValueOf(cpy), rv)
		value.go#L438: 	reflect.Copy(cp, reflect.ValueOf(v))
		value.go#L465: 	appendBoolSliceReflect(&b, reflect.ValueOf(v))
		value.go#L480: 		appendBoolSliceReflect(dst, reflect.ValueOf(v))
		value.go#L539: 	appendInt64SliceReflect(&b, reflect.ValueOf(v))
		value.go#L554: 		appendInt64SliceReflect(dst, reflect.ValueOf(v))
		value.go#L626: 	appendFloat64SliceReflect(&b, reflect.ValueOf(v))
		value.go#L641: 		appendFloat64SliceReflect(dst, reflect.ValueOf(v))
		value.go#L720: 	appendStringSliceReflect(&b, reflect.ValueOf(v))
		value.go#L735: 		appendStringSliceReflect(dst, reflect.ValueOf(v))
		value.go#L806: 	appendValueSliceReflect(&b, reflect.ValueOf(v))
		value.go#L825: 		appendValueSliceReflect(dst, reflect.ValueOf(v))

	go.opentelemetry.io/otel/attribute/internal
		attribute.go#L61: 	reflect.Copy(cp, reflect.ValueOf(v))
		attribute.go#L66: 	rv := reflect.ValueOf(v)
		attribute.go#L72: 		_ = reflect.Copy(reflect.ValueOf(cpy), rv)

	golang.org/x/crypto/cryptobyte
		asn1.go#L277: 		if !s.readASN1Int64(&i) || reflect.ValueOf(out).Elem().OverflowInt(i) {
		asn1.go#L280: 		reflect.ValueOf(out).Elem().SetInt(i)
		asn1.go#L284: 		if !s.readASN1Uint64(&u) || reflect.ValueOf(out).Elem().OverflowUint(u) {
		asn1.go#L287: 		reflect.ValueOf(out).Elem().SetUint(u)
		asn1.go#L693: 			reflect.ValueOf(out).Elem().Set(reflect.ValueOf(defaultValue))

	internal/fmtsort
		sort.go#L127: 		c := compare(reflect.ValueOf(aVal.Elem().Type()), reflect.ValueOf(bVal.Elem().Type()))

	net/http
		h2_bundle.go#L4743: 	if rv := reflect.ValueOf(v); rv.Kind() == reflect.Uintptr {
		h2_error.go#L14: 	dst := reflect.ValueOf(target).Elem()
		h2_error.go#L19: 	src := reflect.ValueOf(e)
		transfer.go#L1104: 		return reflect.ValueOf(r).Field(0).Interface().(io.Reader), true
		transport.go#L414: 	if rv := reflect.ValueOf(altProto["https"]); rv.IsValid() && rv.Type().Kind() == reflect.Struct && rv.Type().NumField() == 1 {

	net/http/httptrace
		trace.go#L179: 	tv := reflect.ValueOf(t).Elem()
		trace.go#L180: 	ov := reflect.ValueOf(old).Elem()
		trace.go#L199: 		tfCopy := reflect.ValueOf(tf.Interface())

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L277: 		if !s.readASN1Int64(&i) || reflect.ValueOf(out).Elem().OverflowInt(i) {
		asn1.go#L280: 		reflect.ValueOf(out).Elem().SetInt(i)
		asn1.go#L284: 		if !s.readASN1Uint64(&u) || reflect.ValueOf(out).Elem().OverflowUint(u) {
		asn1.go#L287: 		reflect.ValueOf(out).Elem().SetUint(u)
		asn1.go#L693: 			reflect.ValueOf(out).Elem().Set(reflect.ValueOf(defaultValue))