google.golang.org/protobuf/reflect/protoreflect.Value.Uint (method)

41 uses

	google.golang.org/protobuf/reflect/protoreflect (current package)
		value_union.go#L209: 		return uint32(v.Uint())
		value_union.go#L211: 		return uint64(v.Uint())
		value_union.go#L290: func (v Value) Uint() uint64 {
		value_union.go#L426: 	return Value(k).Uint()

	google.golang.org/protobuf/encoding/protojson
		encode.go#L272: 		e.WriteUint(val.Uint())

	google.golang.org/protobuf/encoding/prototext
		encode.go#L226: 		e.WriteUint(val.Uint())

	google.golang.org/protobuf/internal/encoding/defval
		default.go#L146: 		return strconv.FormatUint(v.Uint(), 10), nil

	google.golang.org/protobuf/internal/impl
		codec_gen.go#L1643: 	return tagsize + protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1649: 	b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		codec_gen.go#L1688: 		size += tagsize + protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1699: 		b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		codec_gen.go#L1772: 		n += protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1788: 		n += protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1793: 		b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		codec_gen.go#L2861: 	return tagsize + protowire.SizeVarint(v.Uint())
		codec_gen.go#L2867: 	b = protowire.AppendVarint(b, v.Uint())
		codec_gen.go#L2906: 		size += tagsize + protowire.SizeVarint(v.Uint())
		codec_gen.go#L2917: 		b = protowire.AppendVarint(b, v.Uint())
		codec_gen.go#L2990: 		n += protowire.SizeVarint(v.Uint())
		codec_gen.go#L3006: 		n += protowire.SizeVarint(v.Uint())
		codec_gen.go#L3011: 		b = protowire.AppendVarint(b, v.Uint())
		codec_gen.go#L3540: 	b = protowire.AppendFixed32(b, uint32(v.Uint()))
		codec_gen.go#L3577: 		b = protowire.AppendFixed32(b, uint32(v.Uint()))
		codec_gen.go#L3643: 		b = protowire.AppendFixed32(b, uint32(v.Uint()))
		codec_gen.go#L4488: 	b = protowire.AppendFixed64(b, v.Uint())
		codec_gen.go#L4525: 		b = protowire.AppendFixed64(b, v.Uint())
		codec_gen.go#L4591: 		b = protowire.AppendFixed64(b, v.Uint())
		convert.go#L230: 	return reflect.ValueOf(uint32(v.Uint())).Convert(c.goType)
		convert.go#L254: 	return reflect.ValueOf(uint64(v.Uint())).Convert(c.goType)

	google.golang.org/protobuf/proto
		encode_gen.go#L51: 		b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		encode_gen.go#L57: 		b = protowire.AppendVarint(b, v.Uint())
		encode_gen.go#L61: 		b = protowire.AppendFixed32(b, uint32(v.Uint()))
		encode_gen.go#L67: 		b = protowire.AppendFixed64(b, v.Uint())
		equal.go#L129: 		return x.Uint() == y.Uint()
		size_gen.go#L25: 		return protowire.SizeVarint(uint64(uint32(v.Uint())))
		size_gen.go#L31: 		return protowire.SizeVarint(v.Uint())

	github.com/golang/protobuf/jsonpb
		encode.go#L465: 				return entries[i].key.Uint() < entries[j].key.Uint()

	github.com/golang/protobuf/proto
		text_encode.go#L311: 					return entries[i].key.Uint() < entries[j].key.Uint()