Home
last modified time | relevance | path

Searched refs:nonPackedTag (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()
342 private final int nonPackedTag; field in Extension.PrimitiveExtension
351 int nonPackedTag, int packedTag) { in PrimitiveExtension() argument
353 this.nonPackedTag = nonPackedTag; in PrimitiveExtension()
370 if (data.tag == nonPackedTag) { in readDataInto()
466 if (tag == nonPackedTag) { in writeRepeatedData()
558 + ", unequal to both non-packed variant " + nonPackedTag in writeRepeatedData()
631 if (tag == nonPackedTag) { in computeRepeatedSerializedSize()
642 + ", unequal to both non-packed variant " + nonPackedTag in computeRepeatedSerializedSize()
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs239 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
243 field.AddEntriesFrom(input, FieldCodec.ForInt32(nonPackedTag)); in AddEntriesFrom_PackedInt32()
251 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32()
254 output.WriteTag(nonPackedTag); in AddEntriesFrom_NonPackedInt32()
256 output.WriteTag(nonPackedTag); in AddEntriesFrom_NonPackedInt32()
258 output.WriteTag(nonPackedTag); in AddEntriesFrom_NonPackedInt32()
268 input.AssertNextTag(nonPackedTag); in AddEntriesFrom_NonPackedInt32()