/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_message_field.cc | 49 using internal::WireFormat; 69 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor));
|
javanano_enum_field.cc | 71 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor)); 73 internal::WireFormat::TagSize(descriptor->number(), descriptor->type())); 76 internal::WireFormat::WireTypeForFieldType(descriptor->type())));
|
javanano_primitive_field.cc | 52 using internal::WireFormat; 241 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 243 WireFormat::TagSize(descriptor->number(), descriptor->type())); 246 internal::WireFormat::WireTypeForFieldType(descriptor->type()))); [all...] |
javanano_message.cc | 52 using internal::WireFormat; 375 WireFormat::WireTypeForFieldType(field->type()));
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
message.cc | 57 using internal::WireFormat; 117 return WireFormat::ParseAndMergePartial(input, this); 143 WireFormat::SerializeWithCachedSizes(*this, GetCachedSize(), output); 147 int size = WireFormat::ByteSize(*this);
|
wire_format.cc | 65 bool WireFormat::ParseAndMergePartial(io::CodedInputStream* input, 117 bool WireFormat::ParseAndMergeField( 323 bool WireFormat::ParseAndMergeMessageSetItem( 407 void WireFormat::SerializeWithCachedSizes( 434 void WireFormat::SerializeFieldWithCachedSizes( 552 void WireFormat::SerializeMessageSetItemWithCachedSizes( 578 int WireFormat::ByteSize(const Message& message) { 601 int WireFormat::FieldByteSize( 636 int WireFormat::FieldDataOnlyByteSize( 722 int WireFormat::MessageSetItemByteSize [all...] |
unknown_field_set.h | 55 class WireFormat; // wire_format.h
|
dynamic_message.cc | 83 using internal::WireFormat;
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_primitive_field.cc | 50 using internal::WireFormat; 167 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 169 WireFormat::TagSize(descriptor->number(), GetType(descriptor)));
|
java_message.cc | 52 using internal::WireFormat; 858 WireFormat::WireTypeForFieldType(field->type())); [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessage.java | 287 tag == WireFormat.MESSAGE_SET_ITEM_TAG) { 293 final int wireType = WireFormat.getTagWireType(tag); 294 final int fieldNumber = WireFormat.getTagFieldNumber(tag); 352 if (field.getLiteType() == WireFormat.FieldType.ENUM) { 462 if (tag == WireFormat.MESSAGE_SET_TYPE_ID_TAG) { 505 } else if (tag == WireFormat.MESSAGE_SET_MESSAGE_TAG) { 529 input.checkLastTagWas(WireFormat.MESSAGE_SET_ITEM_END_TAG);
|
Descriptors.java | 662 public WireFormat.JavaType getLiteJavaType() { 673 public WireFormat.FieldType getLiteType() { 679 private static final WireFormat.FieldType[] table = 680 WireFormat.FieldType.values(); [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/ |
java_string_field.cc | 52 using internal::WireFormat; 72 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 74 WireFormat::TagSize(descriptor->number(), GetType(descriptor)));
|
java_primitive_field.cc | 51 using internal::WireFormat; 177 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 179 WireFormat::TagSize(descriptor->number(), GetType(descriptor)));
|
java_enum_field.cc | 67 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor)); 69 internal::WireFormat::TagSize(descriptor->number(), GetType(descriptor)));
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_primitive_field.cc | 50 using internal::WireFormat; 195 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 197 WireFormat::TagSize(descriptor->number(), descriptor->type()));
|
javamicro_message.cc | 51 using internal::WireFormat; 330 WireFormat::WireTypeForField(field));
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
CodedInputStreamTest.java | 386 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED); 495 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED);
|
DescriptorsTest.java | 393 * WireFormat.FieldType enum. 397 WireFormat.FieldType[] values2 = WireFormat.FieldType.values(); 408 * WireFormat.JavaType enum. 412 WireFormat.JavaType[] values2 = WireFormat.JavaType.values();
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_primitive_field.cc | 88 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor));
|
cpp_message.cc | 57 using internal::WireFormat; [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_primitive_field.cc | 87 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor));
|
cpp_message.cc | 55 using internal::WireFormat; [all...] |
/external/protobuf/src/google/protobuf/ |
unknown_field_set.cc | 149 if (internal::WireFormat::SkipMessage(input, &other) &&
|
dynamic_message.cc | 83 using internal::WireFormat;
|