reflect.Value.Uint (method)
56 uses
reflect (current package)
deepequal.go#L163: return v1.Uint() == v2.Uint()
iter.go#L59: return rangeNum[uint](v.Uint(), v.Type())
iter.go#L61: return rangeNum[uint8](v.Uint(), v.Type())
iter.go#L63: return rangeNum[uint16](v.Uint(), v.Type())
iter.go#L65: return rangeNum[uint32](v.Uint(), v.Type())
iter.go#L67: return rangeNum[uint64](v.Uint(), v.Type())
iter.go#L69: return rangeNum[uintptr](v.Uint(), v.Type())
value.go#L1582: return v.Uint() == 0
value.go#L2441: func (v Value) Uint() uint64 {
value.go#L3184: return v.Uint() == u.Uint()
value.go#L3409: return makeInt(v.flag.ro(), v.Uint(), t)
value.go#L3429: return makeFloat(v.flag.ro(), float64(v.Uint()), t)
value.go#L3460: if x := v.Uint(); uint64(rune(x)) == x {
encoding/binary
binary.go#L953: e.uint8(uint8(v.Uint()))
binary.go#L955: e.uint16(uint16(v.Uint()))
binary.go#L957: e.uint32(uint32(v.Uint()))
binary.go#L959: e.uint64(v.Uint())
encoding/json
encode.go#L533: b = strconv.AppendUint(b, v.Uint(), 10)
encode.go#L974: return strconv.FormatUint(k.Uint(), 10), nil
fmt
print.go#L794: p.fmtInteger(f.Uint(), unsigned, verb)
print.go#L883: bytes[i] = byte(f.Index(i).Uint())
print.go#L948: n := v.Uint()
github.com/google/go-cmp/cmp
compare.go#L277: s.report(vx.Uint() == vy.Uint(), 0)
report_reflect.go#L168: return textLine(fmt.Sprint(v.Uint()))
report_reflect.go#L171: return textLine(formatHex(v.Uint()))
report_reflect.go#L173: return textLine(fmt.Sprint(v.Uint()))
report_reflect.go#L175: return textLine(formatHex(v.Uint()))
report_slices.go#L271: ss = append(ss, formatHex(v.Index(i).Uint()))
report_slices.go#L307: ss = append(ss, fmt.Sprint(v.Index(i).Uint()))
report_slices.go#L309: ss = append(ss, formatHex(v.Index(i).Uint()))
github.com/google/go-cmp/cmp/internal/value
sort.go#L43: return x.Uint() < y.Uint()
golang.org/x/net/http2
server.go#L761: return uintptr(rv.Uint())
google.golang.org/protobuf/internal/descfmt
stringer.go#L332: isZero = rv.Uint() == 0
google.golang.org/protobuf/internal/impl
codec_map.go#L305: return keys[i].Uint() < keys[j].Uint()
convert.go#L226: return protoreflect.ValueOfUint32(uint32(v.Uint()))
convert.go#L250: return protoreflect.ValueOfUint64(uint64(v.Uint()))
message_opaque.go#L435: return rv.Uint() != 0
message_reflect_field.go#L294: return rv.Uint() != 0
internal/fmtsort
sort.go#L81: return cmp.Compare(aVal.Uint(), bVal.Uint())
net/http
h2_bundle.go#L4811: return uintptr(rv.Uint())
text/template
exec.go#L343: truth = val.Uint() != 0
funcs.go#L194: x = int64(index.Uint())
funcs.go#L485: truth = arg1.Int() >= 0 && uint64(arg1.Int()) == arg.Uint()
funcs.go#L487: truth = arg.Int() >= 0 && arg1.Uint() == uint64(arg.Int())
funcs.go#L506: truth = arg1.Uint() == arg.Uint()
funcs.go#L552: truth = arg1.Int() < 0 || uint64(arg1.Int()) < arg2.Uint()
funcs.go#L554: truth = arg2.Int() >= 0 && arg1.Uint() < uint64(arg2.Int())
funcs.go#L569: truth = arg1.Uint() < arg2.Uint()