/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/ |
D | WireFormat.java | 50 public static final int WIRETYPE_VARINT = 0; field in WireFormat 112 INT64 (JavaType.LONG , WIRETYPE_VARINT ), 113 UINT64 (JavaType.LONG , WIRETYPE_VARINT ), 114 INT32 (JavaType.INT , WIRETYPE_VARINT ), 117 BOOL (JavaType.BOOLEAN , WIRETYPE_VARINT ), 138 UINT32 (JavaType.INT , WIRETYPE_VARINT ), 139 ENUM (JavaType.ENUM , WIRETYPE_VARINT ), 142 SINT32 (JavaType.INT , WIRETYPE_VARINT ), 143 SINT64 (JavaType.LONG , WIRETYPE_VARINT ); 170 makeTag(MESSAGE_SET_TYPE_ID, WIRETYPE_VARINT);
|
D | UnknownFieldSetLite.java | 155 case WireFormat.WIRETYPE_VARINT: in writeTo() 194 case WireFormat.WIRETYPE_VARINT: in getSerializedSize() 304 case WireFormat.WIRETYPE_VARINT: in mergeFieldFrom() 343 storeField(WireFormat.makeTag(fieldNumber, WireFormat.WIRETYPE_VARINT), (long) value); in mergeVarintField()
|
D | CodedOutputStream.java | 1164 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeInt32() 1170 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt32() 1182 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt64() 1194 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeBool() 1528 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeInt32() 1534 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt32() 1546 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt64() 1558 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeBool() 2003 bufferTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeInt32() 2010 bufferTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt32() [all …]
|
D | CodedInputStream.java | 180 case WireFormat.WIRETYPE_VARINT: in skipField() 215 case WireFormat.WIRETYPE_VARINT: { in skipField()
|
D | TextFormat.java | 264 case WireFormat.WIRETYPE_VARINT: in printUnknownFieldValue() 462 printUnknownField(number, WireFormat.WIRETYPE_VARINT, in printUnknownFields()
|
D | UnknownFieldSet.java | 526 case WireFormat.WIRETYPE_VARINT: in mergeFieldFrom()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | wire_format_lite.cc | 103 WireFormatLite::WIRETYPE_VARINT, // TYPE_INT64 104 WireFormatLite::WIRETYPE_VARINT, // TYPE_UINT64 105 WireFormatLite::WIRETYPE_VARINT, // TYPE_INT32 108 WireFormatLite::WIRETYPE_VARINT, // TYPE_BOOL 113 WireFormatLite::WIRETYPE_VARINT, // TYPE_UINT32 114 WireFormatLite::WIRETYPE_VARINT, // TYPE_ENUM 117 WireFormatLite::WIRETYPE_VARINT, // TYPE_SINT32 118 WireFormatLite::WIRETYPE_VARINT, // TYPE_SINT64 124 case WireFormatLite::WIRETYPE_VARINT: { in SkipField() 169 case WireFormatLite::WIRETYPE_VARINT: { in SkipField() [all …]
|
D | wire_format_lite_inl.h | 675 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteInt32ToArray() 681 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteInt64ToArray() 687 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteUInt32ToArray() 693 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteUInt64ToArray() 699 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteSInt32ToArray() 705 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteSInt64ToArray() 747 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteBoolToArray() 753 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteEnumToArray()
|
D | wire_format_lite.h | 87 WIRETYPE_VARINT = 0, enumerator 209 WireFormatLite::WIRETYPE_VARINT);
|
D | wire_format.cc | 79 case WireFormatLite::WIRETYPE_VARINT: { in SkipField() 186 WireFormatLite::WIRETYPE_VARINT)); in SerializeUnknownFields() 320 WireFormatLite::WIRETYPE_VARINT)); in ComputeUnknownFieldsSize()
|
D | lite_unittest.cc | 339 google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT, &coded_output); in main() 343 google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT, &coded_output); in main()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | type_checkers.py | 333 _FieldDescriptor.TYPE_INT64: wire_format.WIRETYPE_VARINT, 334 _FieldDescriptor.TYPE_UINT64: wire_format.WIRETYPE_VARINT, 335 _FieldDescriptor.TYPE_INT32: wire_format.WIRETYPE_VARINT, 338 _FieldDescriptor.TYPE_BOOL: wire_format.WIRETYPE_VARINT, 346 _FieldDescriptor.TYPE_UINT32: wire_format.WIRETYPE_VARINT, 347 _FieldDescriptor.TYPE_ENUM: wire_format.WIRETYPE_VARINT, 350 _FieldDescriptor.TYPE_SINT32: wire_format.WIRETYPE_VARINT, 351 _FieldDescriptor.TYPE_SINT64: wire_format.WIRETYPE_VARINT,
|
D | decoder.py | 374 wire_format.WIRETYPE_VARINT) 386 tag_bytes = encoder.TagBytes(field_number, wire_format.WIRETYPE_VARINT) 422 wire_format.WIRETYPE_VARINT) 433 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint32) 436 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint) 438 UInt32Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint32) 439 UInt64Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint) 442 wire_format.WIRETYPE_VARINT, _DecodeVarint32, wire_format.ZigZagDecode) 444 wire_format.WIRETYPE_VARINT, _DecodeVarint, wire_format.ZigZagDecode) 458 wire_format.WIRETYPE_VARINT, _DecodeVarint, bool) [all …]
|
D | encoder.py | 621 wire_format.WIRETYPE_VARINT, _EncodeSignedVarint, _SignedVarintSize) 624 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize) 627 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize, 660 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT) 670 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT) 784 TagBytes(2, wire_format.WIRETYPE_VARINT),
|
D | wire_format.py | 47 WIRETYPE_VARINT = 0 variable
|
D | reflection_test.py | 2358 self.assertEqual((1, wire_format.WIRETYPE_VARINT), ReadTag()) 2360 self.assertEqual((2, wire_format.WIRETYPE_VARINT), ReadTag()) 2362 self.assertEqual((3, wire_format.WIRETYPE_VARINT), ReadTag()) 2364 self.assertEqual((4, wire_format.WIRETYPE_VARINT), ReadTag()) 2366 self.assertEqual((5, wire_format.WIRETYPE_VARINT), ReadTag())
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/ |
D | CodedOutputByteBufferNano.java | 109 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeUInt64() 116 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeInt64() 123 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeInt32() 144 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeBool() 180 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeUInt32() 190 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeEnum() 211 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeSInt32() 218 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeSInt64()
|
D | WireFormatNano.java | 50 static final int WIRETYPE_VARINT = 0; field in WireFormatNano
|
D | CodedInputByteBufferNano.java | 107 case WireFormatNano.WIRETYPE_VARINT: in skipField()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/ |
D | UnknownFieldSetLiteTest.java | 93 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMergeVarintField() 107 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMergeVarintField_negative() 136 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMutableCopyOf() 141 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMutableCopyOf()
|
D | CodedInputStreamTest.java | 119 assertTrue(input.skipField(WireFormat.WIRETYPE_VARINT)); in assertReadVarint() 141 assertTrue(input.skipField(WireFormat.WIRETYPE_VARINT)); in assertReadVarint()
|
/frameworks/base/tools/incident_report/ |
D | main.cpp | 99 case WireFormatLite::WIRETYPE_VARINT: in read_message()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/ |
D | conformance_test.cc | 553 cat( tag(WireFormatLite::TYPE_INT32, WireFormatLite::WIRETYPE_VARINT), in TestPrematureEOFForType() 554 incompletes[WireFormatLite::WIRETYPE_VARINT] ); in TestPrematureEOFForType()
|