HomeSort by relevance Sort by last modified time
    Searched refs:WireFormat (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/third_party/protobuf/src/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
194 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
199 inline WireFormatLite::WireType WireFormat::WireTypeForField(
208 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
217 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
221 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
229 inline void WireFormat::VerifyUTF8String(const char* data, int size,
230 WireFormat::Operation op) {
232 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
wire_format_unittest.cc 86 // Parse using WireFormat.
89 WireFormat::ParseAndMergePartial(&input, &dest);
103 // Parse using WireFormat.
106 WireFormat::ParseAndMergePartial(&input, &dest);
120 // Parse using WireFormat.
123 WireFormat::ParseAndMergePartial(&input, &dest);
135 // Parse using WireFormat.
139 WireFormat::ParseAndMergePartial(&input, &dest);
151 // Parse using WireFormat.
155 WireFormat::ParseAndMergePartial(&input, &dest)
    [all...]
unknown_field_set_unittest.cc 54 using internal::WireFormat;
182 int size = WireFormat::ComputeUnknownFieldsSize(
190 uint8* result = WireFormat::SerializeUnknownFieldsToArray(
197 WireFormat::SerializeUnknownFields(empty_message_.unknown_fields(),
224 ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message));
238 int size = WireFormat::ByteSize(empty_message_);
239 WireFormat::SerializeWithCachedSizes(empty_message_, size, &output);
356 ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &all_types_message));
379 ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message));
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java 137 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
144 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
151 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
158 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
165 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
172 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
179 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
186 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
193 writeTag(fieldNumber, WireFormat.WIRETYPE_LENGTH_DELIMITED);
200 writeTag(fieldNumber, WireFormat.WIRETYPE_START_GROUP)
    [all...]
CodedInputStream.java 105 if (WireFormat.getTagFieldNumber(lastTag) == 0) {
135 switch (WireFormat.getTagWireType(tag)) {
136 case WireFormat.WIRETYPE_VARINT:
139 case WireFormat.WIRETYPE_FIXED64:
142 case WireFormat.WIRETYPE_LENGTH_DELIMITED:
145 case WireFormat.WIRETYPE_START_GROUP:
148 WireFormat.makeTag(WireFormat.getTagFieldNumber(tag),
149 WireFormat.WIRETYPE_END_GROUP));
151 case WireFormat.WIRETYPE_END_GROUP
    [all...]
FieldSet.java 59 WireFormat.FieldType getLiteType();
60 WireFormat.JavaType getLiteJavaType();
365 private static void verifyType(final WireFormat.FieldType type,
432 if (descriptor.getLiteJavaType() == WireFormat.JavaType.MESSAGE) {
461 * {@link WireFormat}.
463 static int getWireFormatForFieldType(final WireFormat.FieldType type,
466 return WireFormat.WIRETYPE_LENGTH_DELIMITED;
506 } else if (descriptor.getLiteJavaType() == WireFormat.JavaType.MESSAGE) {
524 // other class. Probably WireFormat.
539 final WireFormat.FieldType type) throws IOException
    [all...]
GeneratedMessageLite.java 271 WireFormat.JavaType.MESSAGE &&
482 int wireType = WireFormat.getTagWireType(tag);
483 int fieldNumber = WireFormat.getTagFieldNumber(tag);
514 if (extension.descriptor.getLiteType() == WireFormat.FieldType.ENUM) {
551 WireFormat.FieldType.GROUP) {
597 final WireFormat.FieldType type) {
615 final WireFormat.FieldType type,
633 final WireFormat.FieldType type,
645 private final WireFormat.FieldType type;
653 public WireFormat.FieldType getLiteType()
    [all...]
WireFormat.java 44 public final class WireFormat {
46 private WireFormat() {}
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java 136 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
143 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
150 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
157 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
164 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
171 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
178 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
185 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
192 writeTag(fieldNumber, WireFormat.WIRETYPE_LENGTH_DELIMITED);
199 writeTag(fieldNumber, WireFormat.WIRETYPE_START_GROUP)
    [all...]
FieldSet.java 58 WireFormat.FieldType getLiteType();
59 WireFormat.JavaType getLiteJavaType();
292 private static void verifyType(final WireFormat.FieldType type,
344 if (descriptor.getLiteJavaType() == WireFormat.JavaType.MESSAGE) {
367 * {@link WireFormat}.
369 static int getWireFormatForFieldType(final WireFormat.FieldType type,
372 return WireFormat.WIRETYPE_LENGTH_DELIMITED;
399 } else if (descriptor.getLiteJavaType() == WireFormat.JavaType.MESSAGE) {
418 // other class. Probably WireFormat.
433 final WireFormat.FieldType type) throws IOException
    [all...]
CodedInputStream.java 87 if (WireFormat.getTagFieldNumber(lastTag) == 0) {
117 switch (WireFormat.getTagWireType(tag)) {
118 case WireFormat.WIRETYPE_VARINT:
121 case WireFormat.WIRETYPE_FIXED64:
124 case WireFormat.WIRETYPE_LENGTH_DELIMITED:
127 case WireFormat.WIRETYPE_START_GROUP:
130 WireFormat.makeTag(WireFormat.getTagFieldNumber(tag),
131 WireFormat.WIRETYPE_END_GROUP));
133 case WireFormat.WIRETYPE_END_GROUP
    [all...]
GeneratedMessageLite.java 178 WireFormat.JavaType.MESSAGE &&
308 final int wireType = WireFormat.getTagWireType(tag);
309 final int fieldNumber = WireFormat.getTagFieldNumber(tag);
340 if (extension.descriptor.getLiteType() == WireFormat.FieldType.ENUM) {
377 WireFormat.FieldType.GROUP) {
433 final WireFormat.FieldType type,
445 private final WireFormat.FieldType type;
453 public WireFormat.FieldType getLiteType() {
457 public WireFormat.JavaType getLiteJavaType() {
519 final WireFormat.FieldType type)
    [all...]
WireFormat.java 44 public final class WireFormat {
46 private WireFormat() {}
  /external/protobuf/src/google/protobuf/
wire_format.h 74 class LIBPROTOBUF_EXPORT WireFormat {
123 // WireFormat::SerializeWithCachedSizes() on the same object.
241 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
262 inline WireFormatLite::WireType WireFormat::WireTypeForField(
271 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
280 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
284 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
292 inline void WireFormat::VerifyUTF8String(const char* data, int size,
293 WireFormat::Operation op) {
295 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
wire_format_unittest.cc 86 // Parse using WireFormat.
89 WireFormat::ParseAndMergePartial(&input, &dest);
103 // Parse using WireFormat.
106 WireFormat::ParseAndMergePartial(&input, &dest);
120 // Parse using WireFormat.
123 WireFormat::ParseAndMergePartial(&input, &dest);
135 // Parse using WireFormat.
139 WireFormat::ParseAndMergePartial(&input, &dest);
151 // Parse using WireFormat.
155 WireFormat::ParseAndMergePartial(&input, &dest)
    [all...]
descriptor.pb.cc     [all...]
wire_format.cc 70 return WireFormat::SkipField(input, tag, unknown_fields_);
74 return WireFormat::SkipMessage(input, unknown_fields_);
82 bool WireFormat::SkipField(io::CodedInputStream* input, uint32 tag,
142 bool WireFormat::SkipMessage(io::CodedInputStream* input,
162 void WireFormat::SerializeUnknownFields(const UnknownFieldSet& unknown_fields,
199 uint8* WireFormat::SerializeUnknownFieldsToArray(
234 void WireFormat::SerializeUnknownMessageSetItems(
262 uint8* WireFormat::SerializeUnknownMessageSetItemsToArray(
298 int WireFormat::ComputeUnknownFieldsSize(
346 int WireFormat::ComputeUnknownMessageSetItemsSize
    [all...]
message.cc 56 using internal::WireFormat;
116 return WireFormat::ParseAndMergePartial(input, this);
142 WireFormat::SerializeWithCachedSizes(*this, GetCachedSize(), output);
146 int size = WireFormat::ByteSize(*this);
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 244 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
246 ::google::protobuf::internal::WireFormat::PARSE);
262 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
264 ::google::protobuf::internal::WireFormat::PARSE);
293 DO_(::google::protobuf::internal::WireFormat::SkipField(
307 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
309 ::google::protobuf::internal::WireFormat::SERIALIZE);
316 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
318 ::google::protobuf::internal::WireFormat::SERIALIZE);
330 ::google::protobuf::internal::WireFormat::SerializeUnknownFields
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 251 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
254 ::google::protobuf::internal::WireFormat::PARSE);
270 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
272 ::google::protobuf::internal::WireFormat::PARSE);
315 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
317 ::google::protobuf::internal::WireFormat::SERIALIZE);
324 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
326 ::google::protobuf::internal::WireFormat::SERIALIZE);
347 ::google::protobuf::internal::WireFormat::VerifyUTF8String(
349 ::google::protobuf::internal::WireFormat::SERIALIZE)
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
WireFormat.java 27 public enum WireFormat {
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_extension.cc 44 using internal::WireFormat;
88 string tag = SimpleItoa(WireFormat::MakeTag(descriptor));
113 WireFormat::WireTypeForFieldType(descriptor->type())));
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 52 using internal::WireFormat;
64 WireFormat::TagSize(descriptor->number(), descriptor->type()));
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 52 using internal::WireFormat;
63 WireFormat::TagSize(descriptor->number(), descriptor->type()));
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 

Completed in 880 milliseconds

1 2 3