reflect.Value.SetInt (method)

18 uses

	reflect (current package)
		value.go#L2208: func (v Value) SetInt(x int64) {

	database/sql
		convert.go#L448: 		dv.SetInt(i64)

	encoding/asn1
		asn1.go#L946: 				val.SetInt(int64(parsedInt))
		asn1.go#L952: 				val.SetInt(parsedInt)
		asn1.go#L1059: 		v.SetInt(*params.defaultValue)
		marshal.go#L591: 		defaultValue.SetInt(*params.defaultValue)

	encoding/binary
		binary.go#L879: 		v.SetInt(int64(d.int8()))
		binary.go#L881: 		v.SetInt(int64(d.int16()))
		binary.go#L883: 		v.SetInt(int64(d.int32()))
		binary.go#L885: 		v.SetInt(d.int64())

	encoding/json
		decode.go#L796: 					kv.SetInt(n)
		decode.go#L1008: 			v.SetInt(n)

	encoding/xml
		read.go#L639: 			dst.SetInt(0)
		read.go#L646: 		dst.SetInt(itmp)

	fmt
		scan.go#L1028: 			v.SetInt(s.scanInt(verb, v.Type().Bits()))

	google.golang.org/protobuf/internal/impl
		legacy_enum.go#L102: 	v.SetInt(int64(e.num))

	text/template
		exec.go#L1007: 		value.SetInt(n.Int64)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L280: 		reflect.ValueOf(out).Elem().SetInt(i)