/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | WireFormat.java | 48 public static final int WIRETYPE_VARINT = 0; field in WireFormat 110 INT64 (JavaType.LONG , WIRETYPE_VARINT ), 111 UINT64 (JavaType.LONG , WIRETYPE_VARINT ), 112 INT32 (JavaType.INT , WIRETYPE_VARINT ), 115 BOOL (JavaType.BOOLEAN , WIRETYPE_VARINT ), 128 UINT32 (JavaType.INT , WIRETYPE_VARINT ), 129 ENUM (JavaType.ENUM , WIRETYPE_VARINT ), 132 SINT32 (JavaType.INT , WIRETYPE_VARINT ), 133 SINT64 (JavaType.LONG , WIRETYPE_VARINT ); 160 makeTag(MESSAGE_SET_TYPE_ID, WIRETYPE_VARINT);
|
D | CodedOutputStream.java | 184 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt64() 191 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeInt64() 198 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeInt32() 219 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeBool() 303 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeUInt32() 313 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeEnum() 334 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeSInt32() 341 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT); in writeSInt64()
|
D | CodedInputStream.java | 190 case WireFormat.WIRETYPE_VARINT: in skipField() 225 case WireFormat.WIRETYPE_VARINT: { in skipField()
|
D | TextFormat.java | 249 case WireFormat.WIRETYPE_VARINT: in printUnknownFieldValue() 446 printUnknownField(number, WireFormat.WIRETYPE_VARINT, in printUnknownFields()
|
/external/protobuf/src/google/protobuf/ |
D | wire_format_lite.cc | 93 WireFormatLite::WIRETYPE_VARINT, // TYPE_INT64 94 WireFormatLite::WIRETYPE_VARINT, // TYPE_UINT64 95 WireFormatLite::WIRETYPE_VARINT, // TYPE_INT32 98 WireFormatLite::WIRETYPE_VARINT, // TYPE_BOOL 103 WireFormatLite::WIRETYPE_VARINT, // TYPE_UINT32 104 WireFormatLite::WIRETYPE_VARINT, // TYPE_ENUM 107 WireFormatLite::WIRETYPE_VARINT, // TYPE_SINT32 108 WireFormatLite::WIRETYPE_VARINT, // TYPE_SINT64 114 case WireFormatLite::WIRETYPE_VARINT: { in SkipField() 159 case WireFormatLite::WIRETYPE_VARINT: { in SkipField() [all …]
|
D | wire_format_lite_inl.h | 659 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteInt32ToArray() 665 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteInt64ToArray() 671 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteUInt32ToArray() 677 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteUInt64ToArray() 683 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteSInt32ToArray() 689 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteSInt64ToArray() 731 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteBoolToArray() 737 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target); in WriteEnumToArray()
|
D | lite_unittest.cc | 328 google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT, &coded_output); in main() 332 google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT, &coded_output); in main()
|
D | wire_format_lite.h | 87 WIRETYPE_VARINT = 0, enumerator 209 WireFormatLite::WIRETYPE_VARINT);
|
D | wire_format.cc | 87 case WireFormatLite::WIRETYPE_VARINT: { in SkipField() 169 WireFormatLite::WIRETYPE_VARINT)); in SerializeUnknownFields() 303 WireFormatLite::WIRETYPE_VARINT)); in ComputeUnknownFieldsSize()
|
/external/nanopb-c/generator/google/protobuf/internal/ |
D | type_checkers.py | 267 _FieldDescriptor.TYPE_INT64: wire_format.WIRETYPE_VARINT, 268 _FieldDescriptor.TYPE_UINT64: wire_format.WIRETYPE_VARINT, 269 _FieldDescriptor.TYPE_INT32: wire_format.WIRETYPE_VARINT, 272 _FieldDescriptor.TYPE_BOOL: wire_format.WIRETYPE_VARINT, 280 _FieldDescriptor.TYPE_UINT32: wire_format.WIRETYPE_VARINT, 281 _FieldDescriptor.TYPE_ENUM: wire_format.WIRETYPE_VARINT, 284 _FieldDescriptor.TYPE_SINT32: wire_format.WIRETYPE_VARINT, 285 _FieldDescriptor.TYPE_SINT64: wire_format.WIRETYPE_VARINT,
|
D | decoder.py | 349 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint32) 352 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint) 354 UInt32Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint32) 355 UInt64Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint) 358 wire_format.WIRETYPE_VARINT, _DecodeVarint32, wire_format.ZigZagDecode) 360 wire_format.WIRETYPE_VARINT, _DecodeVarint, wire_format.ZigZagDecode) 374 wire_format.WIRETYPE_VARINT, _DecodeVarint, bool) 570 type_id_tag_bytes = encoder.TagBytes(2, wire_format.WIRETYPE_VARINT)
|
D | encoder.py | 594 wire_format.WIRETYPE_VARINT, _EncodeSignedVarint, _SignedVarintSize) 597 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize) 600 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize, 633 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT) 643 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT) 757 TagBytes(2, wire_format.WIRETYPE_VARINT),
|
D | wire_format.py | 47 WIRETYPE_VARINT = 0 variable
|
/external/protobuf/python/google/protobuf/internal/ |
D | type_checkers.py | 309 _FieldDescriptor.TYPE_INT64: wire_format.WIRETYPE_VARINT, 310 _FieldDescriptor.TYPE_UINT64: wire_format.WIRETYPE_VARINT, 311 _FieldDescriptor.TYPE_INT32: wire_format.WIRETYPE_VARINT, 314 _FieldDescriptor.TYPE_BOOL: wire_format.WIRETYPE_VARINT, 322 _FieldDescriptor.TYPE_UINT32: wire_format.WIRETYPE_VARINT, 323 _FieldDescriptor.TYPE_ENUM: wire_format.WIRETYPE_VARINT, 326 _FieldDescriptor.TYPE_SINT32: wire_format.WIRETYPE_VARINT, 327 _FieldDescriptor.TYPE_SINT64: wire_format.WIRETYPE_VARINT,
|
D | decoder.py | 392 wire_format.WIRETYPE_VARINT) 404 tag_bytes = encoder.TagBytes(field_number, wire_format.WIRETYPE_VARINT) 440 wire_format.WIRETYPE_VARINT) 451 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint32) 454 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint) 456 UInt32Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint32) 457 UInt64Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint) 460 wire_format.WIRETYPE_VARINT, _DecodeVarint32, wire_format.ZigZagDecode) 462 wire_format.WIRETYPE_VARINT, _DecodeVarint, wire_format.ZigZagDecode) 476 wire_format.WIRETYPE_VARINT, _DecodeVarint, bool) [all …]
|
D | encoder.py | 610 wire_format.WIRETYPE_VARINT, _EncodeSignedVarint, _SignedVarintSize) 613 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize) 616 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize, 651 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT) 661 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT) 776 TagBytes(2, wire_format.WIRETYPE_VARINT),
|
D | wire_format.py | 47 WIRETYPE_VARINT = 0 variable
|
D | reflection_test.py | 2327 self.assertEqual((1, wire_format.WIRETYPE_VARINT), ReadTag()) 2329 self.assertEqual((2, wire_format.WIRETYPE_VARINT), ReadTag()) 2331 self.assertEqual((3, wire_format.WIRETYPE_VARINT), ReadTag()) 2333 self.assertEqual((4, wire_format.WIRETYPE_VARINT), ReadTag()) 2335 self.assertEqual((5, wire_format.WIRETYPE_VARINT), ReadTag())
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 136 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeUInt64() 143 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeInt64() 150 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeInt32() 171 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeBool() 215 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeUInt32() 225 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeEnum() 246 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeSInt32() 253 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT); in writeSInt64()
|
D | WireFormatMicro.java | 48 static final int WIRETYPE_VARINT = 0; field in WireFormatMicro 84 makeTag(MESSAGE_SET_TYPE_ID, WIRETYPE_VARINT);
|
D | CodedInputStreamMicro.java | 115 case WireFormatMicro.WIRETYPE_VARINT: in skipField()
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | CodedOutputByteBufferNano.java | 107 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeUInt64() 114 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeInt64() 121 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeInt32() 142 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeBool() 178 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeUInt32() 188 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeEnum() 209 writeTag(fieldNumber, WireFormatNano.WIRETYPE_VARINT); in writeSInt32() 216 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()
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | CodedInputStreamTest.java | 117 assertTrue(input.skipField(WireFormat.WIRETYPE_VARINT)); in assertReadVarint() 139 assertTrue(input.skipField(WireFormat.WIRETYPE_VARINT)); in assertReadVarint()
|