Home
last modified time | relevance | path

Searched refs:packedTag (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DExtension.java138 int type, Class<T> clazz, long tag, long nonPackedTag, long packedTag) { in createRepeatedPrimitiveTyped() argument
140 (int) nonPackedTag, (int) packedTag); in createRepeatedPrimitiveTyped()
348 private final int packedTag; field in Extension.PrimitiveExtension
351 int nonPackedTag, int packedTag) { in PrimitiveExtension() argument
354 this.packedTag = packedTag; in PrimitiveExtension()
469 } else if (tag == packedTag) { in writeRepeatedData()
559 + " and packed variant " + packedTag); in writeRepeatedData()
634 } else if (tag == packedTag) { in computeRepeatedSerializedSize()
643 + " and packed variant " + packedTag); in computeRepeatedSerializedSize()
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs223 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
229 output.WriteTag(packedTag); in AddEntriesFrom_PackedInt32()
242 input.AssertNextTag(packedTag); in AddEntriesFrom_PackedInt32()
265 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32()
269 field.AddEntriesFrom(input, FieldCodec.ForInt32(packedTag)); in AddEntriesFrom_NonPackedInt32()