HomeSort by relevance Sort by last modified time
    Searched refs:WIRETYPE_VARINT (Results 1 - 19 of 19) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 48 static final int WIRETYPE_VARINT = 0;
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);
    [all...]
CodedOutputStream.java 150 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
157 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
164 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
185 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
234 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
244 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
265 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
272 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
    [all...]
CodedInputStream.java 118 case WireFormat.WIRETYPE_VARINT:
UnknownFieldSet.java 477 case WireFormat.WIRETYPE_VARINT:
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
WireFormatMicro.java 48 static final int WIRETYPE_VARINT = 0;
84 makeTag(MESSAGE_SET_TYPE_ID, WIRETYPE_VARINT);
CodedOutputStreamMicro.java 136 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
143 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
150 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
171 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
215 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
225 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
246 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
253 writeTag(fieldNumber, WireFormatMicro.WIRETYPE_VARINT);
    [all...]
CodedInputStreamMicro.java 115 case WireFormatMicro.WIRETYPE_VARINT:
  /external/protobuf/src/google/protobuf/
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: {
211 WriteTag(field_number, WIRETYPE_VARINT, output)
    [all...]
wire_format_lite_inl.h 557 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
563 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
569 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
575 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
581 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
587 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
629 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
635 target = WriteTagToArray(field_number, WIRETYPE_VARINT, target);
wire_format_lite.h 89 WIRETYPE_VARINT = 0,
200 WireFormatLite::WIRETYPE_VARINT);
wire_format.cc 87 case WireFormatLite::WIRETYPE_VARINT: {
169 WireFormatLite::WIRETYPE_VARINT));
308 WireFormatLite::WIRETYPE_VARINT));
    [all...]
descriptor.pb.cc     [all...]
  /external/protobuf/python/google/protobuf/internal/
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,
decoder.py 276 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint32)
279 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint)
281 UInt32Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint32)
282 UInt64Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint)
285 wire_format.WIRETYPE_VARINT, _DecodeVarint32, wire_format.ZigZagDecode)
287 wire_format.WIRETYPE_VARINT, _DecodeVarint, wire_format.ZigZagDecode)
301 wire_format.WIRETYPE_VARINT, _DecodeVarint, bool)
497 type_id_tag_bytes = encoder.TagBytes(2, wire_format.WIRETYPE_VARINT)
encoder.py 511 wire_format.WIRETYPE_VARINT, _EncodeSignedVarint, _SignedVarintSize)
514 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize)
517 wire_format.WIRETYPE_VARINT, _EncodeVarint, _VarintSize,
550 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT)
560 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_VARINT)
674 TagBytes(2, wire_format.WIRETYPE_VARINT),
wire_format.py 47 WIRETYPE_VARINT = 0
reflection_test.py     [all...]
  /hardware/ril/mock-ril/src/cpp/
msgheader.pb.cpp 178 ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
193 ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
209 ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
225 ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp     [all...]

Completed in 324 milliseconds