type google.golang.org/protobuf/encoding/protowire.Number

86 uses

	google.golang.org/protobuf/encoding/protowire (current package)
		wire.go#L21: type Number int32
		wire.go#L24: 	MinValidNumber        Number = 1
		wire.go#L25: 	FirstReservedNumber   Number = 19000
		wire.go#L26: 	LastReservedNumber    Number = 19999
		wire.go#L27: 	MaxValidNumber        Number = 1<<29 - 1
		wire.go#L36: func (n Number) IsValid() bool {
		wire.go#L98: func ConsumeField(b []byte) (Number, Type, int) {
		wire.go#L116: func ConsumeFieldValue(num Number, typ Type, b []byte) (n int) {
		wire.go#L120: func consumeFieldValueD(num Number, typ Type, b []byte, depth int) (n int) {
		wire.go#L166: func AppendTag(b []byte, num Number, typ Type) []byte {
		wire.go#L172: func ConsumeTag(b []byte) (Number, Type, int) {
		wire.go#L184: func SizeTag(num Number) int {
		wire.go#L471: func AppendGroup(b []byte, num Number, v []byte) []byte {
		wire.go#L479: func ConsumeGroup(num Number, b []byte) (v []byte, n int) {
		wire.go#L498: func SizeGroup(num Number, n int) int {
		wire.go#L505: func DecodeTag(x uint64) (Number, Type) {
		wire.go#L510: 	return Number(x >> 3), Type(x & 7)
		wire.go#L514: func EncodeTag(num Number, typ Type) uint64 {

	google.golang.org/protobuf/internal/encoding/messageset
		messageset.go#L28: 	FieldItem    = protowire.Number(1)
		messageset.go#L29: 	FieldTypeID  = protowire.Number(2)
		messageset.go#L30: 	FieldMessage = protowire.Number(3)
		messageset.go#L66: func SizeField(num protowire.Number) int {
		messageset.go#L77: func Unmarshal(b []byte, wantLen bool, fn func(typeID protowire.Number, value []byte) error) error {
		messageset.go#L113: func ConsumeFieldValue(b []byte, wantLen bool) (typeid protowire.Number, message []byte, n int, err error) {
		messageset.go#L138: 			typeid = protowire.Number(v)
		messageset.go#L184: func AppendFieldStart(b []byte, num protowire.Number) []byte {

	google.golang.org/protobuf/internal/impl
		codec_extension.go#L90: func (f *ExtensionField) appendLazyBytes(xt protoreflect.ExtensionType, xi *extensionFieldInfo, num protowire.Number, wtyp protowire.Type, b []byte) {
		codec_extension.go#L135: 			num := protowire.Number(tag >> 3)
		codec_field.go#L305: func consumeMessageValue(b []byte, v protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (protoreflect.Value, unmarshalOutput, error) {
		codec_field.go#L334: func consumeGroupValue(b []byte, v protoreflect.Value, num protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (protoreflect.Value, unmarshalOutput, error) {
		codec_field.go#L419: func consumeGroup(b []byte, m proto.Message, num protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (out unmarshalOutput, err error) {
		codec_field.go#L611: func consumeMessageSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_field.go#L679: func consumeGroupSliceValue(b []byte, listv protoreflect.Value, num protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_field.go#L766: func consumeGroupSlice(b []byte, p pointer, num protowire.Number, wtyp protowire.Type, goType reflect.Type, opts unmarshalOptions) (out unmarshalOutput, err error) {
		codec_gen.go#L272: func consumeBoolValue(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L323: func consumeBoolSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L436: func consumeEnumValue(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L487: func consumeEnumSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L842: func consumeInt32Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L893: func consumeInt32SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L1248: func consumeSint32Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L1299: func consumeSint32SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L1654: func consumeUint32Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L1705: func consumeUint32SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L2060: func consumeInt64Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L2111: func consumeInt64SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L2466: func consumeSint64Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L2517: func consumeSint64SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L2872: func consumeUint64Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L2923: func consumeUint64SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L3229: func consumeSfixed32Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L3267: func consumeSfixed32SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L3545: func consumeFixed32Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L3583: func consumeFixed32SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L3861: func consumeFloatValue(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L3899: func consumeFloatSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L4177: func consumeSfixed64Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L4215: func consumeSfixed64SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L4493: func consumeFixed64Value(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L4531: func consumeFixed64SliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L4809: func consumeDoubleValue(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L4847: func consumeDoubleSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L5213: func consumeStringValue(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L5243: func consumeStringValueValidateUTF8(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L5287: func consumeStringSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L5553: func consumeBytesValue(b []byte, _ protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_gen.go#L5594: func consumeBytesSliceValue(b []byte, listv protoreflect.Value, _ protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (_ protoreflect.Value, out unmarshalOutput, err error) {
		codec_message.go#L27: 	coderFields        map[protowire.Number]*coderFieldInfo
		codec_message.go#L66: 	mi.coderFields = make(map[protowire.Number]*coderFieldInfo)
		codec_messageset.go#L107: 	err = messageset.Unmarshal(b, true, func(num protowire.Number, v []byte) error {
		codec_tables.go#L30: 	unmarshal func(b []byte, v protoreflect.Value, num protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (protoreflect.Value, unmarshalOutput, error)
		decode.go#L88: func (mi *MessageInfo) unmarshalPointer(b []byte, p pointer, groupTag protowire.Number, opts unmarshalOptions) (out unmarshalOutput, err error) {
		decode.go#L118: 		var num protowire.Number
		decode.go#L122: 			num = protowire.Number(n)
		decode.go#L207: func (mi *MessageInfo) unmarshalExtension(b []byte, num protowire.Number, wtyp protowire.Type, exts map[int32]ExtensionField, opts unmarshalOptions) (out unmarshalOutput, err error) {
		decode.go#L259: func skipExtension(b []byte, xi *extensionFieldInfo, num protowire.Number, wtyp protowire.Type, opts unmarshalOptions) (out unmarshalOutput, _ ValidationStatus) {
		validate.go#L225: func (mi *MessageInfo) validate(b []byte, groupTag protowire.Number, opts unmarshalOptions) (out unmarshalOutput, result ValidationStatus) {
		validate.go#L230: 		endGroup         protowire.Number
		validate.go#L268: 			var num protowire.Number
		validate.go#L272: 				num = protowire.Number(n)

	google.golang.org/protobuf/proto
		messageset.go#L63: 	return messageset.Unmarshal(b, false, func(num protowire.Number, v []byte) error {
		messageset.go#L76: func (o UnmarshalOptions) unmarshalMessageSetField(m protoreflect.Message, num protowire.Number, v []byte) error {
		size.go#L75: func (o MarshalOptions) sizeList(num protowire.Number, fd protoreflect.FieldDescriptor, list protoreflect.List) (size int) {
		size.go#L90: func (o MarshalOptions) sizeMap(num protowire.Number, fd protoreflect.FieldDescriptor, mapv protoreflect.Map) (size int) {
		size_gen.go#L14: func (o MarshalOptions) sizeSingular(num protowire.Number, kind protoreflect.Kind, v protoreflect.Value) int {

	google.golang.org/protobuf/reflect/protoreflect
		proto.go#L373: type FieldNumber = protowire.Number