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

37 uses

	google.golang.org/protobuf/reflect/protoreflect (current package)
		value_equal.go#L55: 		return eqType && x.Uint() == y.Uint()
		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#L309: 		e.WriteUint(val.Uint())

	google.golang.org/protobuf/encoding/prototext
		encode.go#L236: 		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#L1679: 	return tagsize + protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1685: 	b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		codec_gen.go#L1724: 		size += tagsize + protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1735: 		b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		codec_gen.go#L1808: 		n += protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1824: 		n += protowire.SizeVarint(uint64(uint32(v.Uint())))
		codec_gen.go#L1829: 		b = protowire.AppendVarint(b, uint64(uint32(v.Uint())))
		codec_gen.go#L2924: 	return tagsize + protowire.SizeVarint(v.Uint())
		codec_gen.go#L2930: 	b = protowire.AppendVarint(b, v.Uint())
		codec_gen.go#L2969: 		size += tagsize + protowire.SizeVarint(v.Uint())
		codec_gen.go#L2980: 		b = protowire.AppendVarint(b, v.Uint())
		codec_gen.go#L3053: 		n += protowire.SizeVarint(v.Uint())
		codec_gen.go#L3069: 		n += protowire.SizeVarint(v.Uint())
		codec_gen.go#L3074: 		b = protowire.AppendVarint(b, v.Uint())
		codec_gen.go#L3611: 	b = protowire.AppendFixed32(b, uint32(v.Uint()))
		codec_gen.go#L3648: 		b = protowire.AppendFixed32(b, uint32(v.Uint()))
		codec_gen.go#L3714: 		b = protowire.AppendFixed32(b, uint32(v.Uint()))
		codec_gen.go#L4571: 	b = protowire.AppendFixed64(b, v.Uint())
		codec_gen.go#L4608: 		b = protowire.AppendFixed64(b, v.Uint())
		codec_gen.go#L4674: 		b = protowire.AppendFixed64(b, v.Uint())
		convert.go#L229: 	return reflect.ValueOf(uint32(v.Uint())).Convert(c.goType)
		convert.go#L253: 	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())
		size_gen.go#L25: 		return protowire.SizeVarint(uint64(uint32(v.Uint())))
		size_gen.go#L31: 		return protowire.SizeVarint(v.Uint())