Searched refs:DescriptorProto (Results 1 - 25 of 28) sorted by relevance

12

/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DParseExceptionsTest.java38 import com.google.protobuf.DescriptorProtos.DescriptorProto;
63 DescriptorProto parse(InputStream in) throws IOException;
69 serializedProto = DescriptorProto.getDescriptor().toProto().toByteArray();
75 DescriptorProto.getDescriptor().toProto().writeDelimitedTo(bos);
87 public DescriptorProto parse(InputStream in) throws IOException {
88 return DescriptorProto.parseFrom(in);
98 public DescriptorProto parse(InputStream in) throws IOException {
99 return DescriptorProto.parseFrom(in, ExtensionRegistry.newInstance());
109 public DescriptorProto parse(InputStream in) throws IOException {
110 return DescriptorProto
[all...]
H A DDescriptorsTest.java33 import com.google.protobuf.DescriptorProtos.DescriptorProto;
454 .addMessageType(DescriptorProto.newBuilder()
486 .addMessageType(DescriptorProto.newBuilder()
495 .addMessageType(DescriptorProto.newBuilder()
578 .addMessageType(DescriptorProto.newBuilder()
600 .addMessageType(DescriptorProto.newBuilder()
614 .addMessageType(DescriptorProto.newBuilder().setName("Bar"))
623 .addMessageType(DescriptorProto.newBuilder()
649 .addMessageType(DescriptorProto.newBuilder().setName("Bar"))
659 .addMessageType(DescriptorProto
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.h295 bool ParseMessageDefinition(DescriptorProto* message,
316 bool ParseMessageBlock(DescriptorProto* message,
328 bool ParseMessageStatement(DescriptorProto* message,
344 // either a FileDescriptorProto or a DescriptorProto, we must pass in the
347 RepeatedPtrField<DescriptorProto>* messages,
356 RepeatedPtrField<DescriptorProto>* messages,
363 bool ParseExtensions(DescriptorProto* message,
368 bool ParseReserved(DescriptorProto* message,
370 bool ParseReservedNames(DescriptorProto* message,
372 bool ParseReservedNumbers(DescriptorProto* messag
[all...]
H A Dparser.cc650 DescriptorProto* message,
656 DescriptorProto::kNameFieldNumber);
669 bool IsMessageSetWireFormatMessage(const DescriptorProto& message) {
685 void AdjustExtensionRangesWithMaxEndNumber(DescriptorProto* message) {
699 bool Parser::ParseMessageBlock(DescriptorProto* message,
723 bool Parser::ParseMessageStatement(DescriptorProto* message,
731 DescriptorProto::kNestedTypeFieldNumber,
737 DescriptorProto::kEnumTypeFieldNumber,
743 DescriptorProto::kExtensionRangeFieldNumber);
749 DescriptorProto
[all...]
H A Dparser_unittest.cc1646 DescriptorProto::descriptor()->file()->CopyTo(&descriptor_proto);
1660 DescriptorProto* message(other_file.add_message_type());
1705 bool operator()(const DescriptorProto* left,
1706 const DescriptorProto* right) const {
1712 void SortMessages(DescriptorProto *descriptor_proto) {
1718 DescriptorProto **data =
1730 DescriptorProto **data =
1736 void StripFieldTypeName(DescriptorProto* proto) {
2486 const DescriptorProto::ExtensionRange& range1 =
2488 const DescriptorProto
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.pb.h41 class DescriptorProto;
403 // repeated .google.protobuf.DescriptorProto message_type = 4;
407 const ::google::protobuf::DescriptorProto& message_type(int index) const;
408 ::google::protobuf::DescriptorProto* mutable_message_type(int index);
409 ::google::protobuf::DescriptorProto* add_message_type();
410 ::google::protobuf::RepeatedPtrField< ::google::protobuf::DescriptorProto >*
412 const ::google::protobuf::RepeatedPtrField< ::google::protobuf::DescriptorProto >&
502 ::google::protobuf::RepeatedPtrField< ::google::protobuf::DescriptorProto > message_type_;
596 // @@protoc_insertion_point(class_scope:google.protobuf.DescriptorProto.ExtensionRange)
695 // @@protoc_insertion_point(class_scope:google.protobuf.DescriptorProto
716 class LIBPROTOBUF_EXPORT DescriptorProto : public ::google::protobuf::Message { class in namespace:google::protobuf
[all...]
H A Ddescriptor.pb.cc155 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, name_),
156 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, field_),
157 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, extension_),
158 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, nested_type_),
159 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, enum_type_),
160 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, extension_range_),
161 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, oneof_decl_),
162 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, options_),
163 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, reserved_range_),
164 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DescriptorProto, reserved_name
3039 DescriptorProto::DescriptorProto() function in class:google::protobuf::DescriptorProto
3049 DescriptorProto::DescriptorProto(const DescriptorProto& from) function in class:google::protobuf::DescriptorProto
[all...]
H A Ddescriptor_unittest.cc69 DescriptorProto* AddMessage(FileDescriptorProto* file, const string& name) {
70 DescriptorProto* result = file->add_message_type();
75 DescriptorProto* AddNestedMessage(DescriptorProto* parent, const string& name) {
76 DescriptorProto* result = parent->add_nested_type();
87 EnumDescriptorProto* AddNestedEnum(DescriptorProto* parent,
101 FieldDescriptorProto* AddField(DescriptorProto* parent,
127 FieldDescriptorProto* AddNestedExtension(DescriptorProto* parent,
141 DescriptorProto::ExtensionRange* AddExtensionRange(DescriptorProto* paren
[all...]
H A Ddescriptor_database.h169 bool AddNestedExtensions(const DescriptorProto& message_type,
H A Ddescriptor.cc1786 void Descriptor::CopyTo(DescriptorProto* proto) const {
1802 DescriptorProto::ExtensionRange* range = proto->add_extension_range();
1810 DescriptorProto::ReservedRange* range = proto->add_reserved_range();
1823 void Descriptor::CopyJsonNameTo(DescriptorProto* proto) const {
2678 output->push_back(DescriptorProto::kNestedTypeFieldNumber);
2693 output->push_back(DescriptorProto::kExtensionFieldNumber);
2698 output->push_back(DescriptorProto::kFieldFieldNumber);
2705 output->push_back(DescriptorProto::kOneofDeclFieldNumber);
2712 output->push_back(DescriptorProto::kEnumTypeFieldNumber);
2951 void BuildMessage(const DescriptorProto
[all...]
H A Ddescriptor.h88 class DescriptorProto;
202 // Write the contents of this Descriptor into the given DescriptorProto.
203 // The target DescriptorProto must be clear before calling this; if it
205 void CopyTo(DescriptorProto* proto) const;
371 void CopyJsonNameTo(DescriptorProto* proto) const;
H A Ddescriptor_database.cc138 const DescriptorProto& message_type,
H A Dextension_set_unittest.cc1059 DescriptorProto template_descriptor_proto;
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMessageDescriptor.cs63 internal MessageDescriptor(DescriptorProto proto, FileDescriptor file, MessageDescriptor parent, int typeIndex, GeneratedClrTypeInfo generatedCodeInfo)
116 internal DescriptorProto Proto { get; }
H A DDescriptor.cs146 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.DescriptorProto), global::Google.Protobuf.Reflection.DescriptorProto.Parser, new[]{ "Name", "Field", "Extension", "NestedType", "EnumType", "ExtensionRange", "OneofDecl", "Options", "ReservedRange", "ReservedName" }, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange), global::Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.Parser, new[]{ "Start", "End" }, null, null, null),
147 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange), global::Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.Parser, new[]{ "Start", "End" }, null, null, null)}),
375 private static readonly pb::FieldCodec<global::Google.Protobuf.Reflection.DescriptorProto> _repeated_messageType_codec
376 = pb::FieldCodec.ForMessage(34, global::Google.Protobuf.Reflection.DescriptorProto.Parser);
377 private readonly pbc::RepeatedField<global::Google.Protobuf.Reflection.DescriptorProto> messageType_ = new pbc::RepeatedField<global::Google.Protobuf.Reflection.DescriptorProto>();
663 internal sealed partial class DescriptorProto : pb::IMessage<DescriptorProto> { class in namespace:Google.Protobuf.Reflection
675 public DescriptorProto() { method in class:Google.Protobuf.Reflection.DescriptorProto
681 public DescriptorProto(DescriptorProto other) : this() { method in class:Google.Protobuf.Reflection.DescriptorProto
[all...]
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyDescriptor.java78 this.builder = DescriptorProtos.DescriptorProto.newBuilder();
228 public DescriptorProtos.DescriptorProto.Builder getBuilder() {
265 private DescriptorProtos.DescriptorProto.Builder builder;
/external/protobuf/python/google/protobuf/internal/
H A Ddescriptor_test.py546 descriptor_pb2.DescriptorProto,
562 descriptor_pb2.DescriptorProto,
579 descriptor_pb2.DescriptorProto,
620 descriptor_pb2.DescriptorProto,
634 descriptor_pb2.DescriptorProto,
656 descriptor_pb2.DescriptorProto,
797 descriptor_proto = descriptor_pb2.DescriptorProto()
807 descriptor_proto = descriptor_pb2.DescriptorProto()
H A Dreflection_test.py1050 desc_proto = descriptor_pb2.DescriptorProto()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DDescriptors.java598 public DescriptorProto toProto() {
663 for (final DescriptorProto.ExtensionRange range :
674 for (final DescriptorProto.ReservedRange range :
760 private DescriptorProto proto;
780 this.proto = DescriptorProto.newBuilder().setName(name).addExtensionRange(
781 DescriptorProto.ExtensionRange.newBuilder().setStart(1)
796 private Descriptor(final DescriptorProto proto,
867 private void setProto(final DescriptorProto proto) {
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc719 DescriptorProto edp;
/external/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc257 // The Python message is an instance of descriptor_pb2.DescriptorProto
557 return CopyToPythonProto<DescriptorProto>(_GetDescriptor(self), target);
/external/nanopb-c/generator/google/protobuf/
H A Ddescriptor_pb2.py15 serialized_pb='\n google/protobuf/descriptor.proto\x12\x0fgoogle.protobuf\"G\n\x11\x46ileDescriptorSet\x12\x32\n\x04\x66ile\x18\x01 \x03(\x0b\x32$.google.protobuf.FileDescriptorProto\"\xcb\x03\n\x13\x46ileDescriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07package\x18\x02 \x01(\t\x12\x12\n\ndependency\x18\x03 \x03(\t\x12\x19\n\x11public_dependency\x18\n \x03(\x05\x12\x17\n\x0fweak_dependency\x18\x0b \x03(\x05\x12\x36\n\x0cmessage_type\x18\x04 \x03(\x0b\x32 .google.protobuf.DescriptorProto\x12\x37\n\tenum_type\x18\x05 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProto\x12\x38\n\x07service\x18\x06 \x03(\x0b\x32\'.google.protobuf.ServiceDescriptorProto\x12\x38\n\textension\x18\x07 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProto\x12-\n\x07options\x18\x08 \x01(\x0b\x32\x1c.google.protobuf.FileOptions\x12\x39\n\x10source_code_info\x18\t \x01(\x0b\x32\x1f.google.protobuf.SourceCodeInfo\"\xa9\x03\n\x0f\x44\x65scriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x34\n\x05\x66ield\x18\x02 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProto\x12\x38\n\textension\x18\x06 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProto\x12\x35\n\x0bnested_type\x18\x03 \x03(\x0b\x32 .google.protobuf.DescriptorProto\x12\x37\n\tenum_type\x18\x04 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProto\x12H\n\x0f\x65xtension_range\x18\x05 \x03(\x0b\x32/.google.protobuf.DescriptorProto.ExtensionRange\x12\x30\n\x07options\x18\x07 \x01(\x0b\x32\x1f.google.protobuf.MessageOptions\x1a,\n\x0e\x45xtensionRange\x12\r\n\x05start\x18\x01 \x01(\x05\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x05\"\x94\x05\n\x14\x46ieldDescriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06number\x18\x03 \x01(\x05\x12:\n\x05label\x18\x04 \x01(\x0e\x32+.google.protobuf.FieldDescriptorProto.Label\x12\x38\n\x04type\x18\x05 \x01(\x0e\x32*.google.protobuf.FieldDescriptorProto.Type\x12\x11\n\ttype_name\x18\x06 \x01(\t\x12\x10\n\x08\x65xtendee\x18\x02 \x01(\t\x12\x15\n\rdefault_value\x18\x07 \x01(\t\x12.\n\x07options\x18\x08 \x01(\x0b\x32\x1d.google.protobuf.FieldOptions\"\xb6\x02\n\x04Type\x12\x0f\n\x0bTYPE_DOUBLE\x10\x01\x12\x0e\n\nTYPE_FLOAT\x10\x02\x12\x0e\n\nTYPE_INT64\x10\x03\x12\x0f\n\x0bTYPE_UINT64\x10\x04\x12\x0e\n\nTYPE_INT32\x10\x05\x12\x10\n\x0cTYPE_FIXED64\x10\x06\x12\x10\n\x0cTYPE_FIXED32\x10\x07\x12\r\n\tTYPE_BOOL\x10\x08\x12\x0f\n\x0bTYPE_STRING\x10\t\x12\x0e\n\nTYPE_GROUP\x10\n\x12\x10\n\x0cTYPE_MESSAGE\x10\x0b\x12\x0e\n\nTYPE_BYTES\x10\x0c\x12\x0f\n\x0bTYPE_UINT32\x10\r\x12\r\n\tTYPE_ENUM\x10\x0e\x12\x11\n\rTYPE_SFIXED32\x10\x0f\x12\x11\n\rTYPE_SFIXED64\x10\x10\x12\x0f\n\x0bTYPE_SINT32\x10\x11\x12\x0f\n\x0bTYPE_SINT64\x10\x12\"C\n\x05Label\x12\x12\n\x0eLABEL_OPTIONAL\x10\x01\x12\x12\n\x0eLABEL_REQUIRED\x10\x02\x12\x12\n\x0eLABEL_REPEATED\x10\x03\"\x8c\x01\n\x13\x45numDescriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x38\n\x05value\x18\x02 \x03(\x0b\x32).google.protobuf.EnumValueDescriptorProto\x12-\n\x07options\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.EnumOptions\"l\n\x18\x45numValueDescriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06number\x18\x02 \x01(\x05\x12\x32\n\x07options\x18\x03 \x01(\x0b\x32!.google.protobuf.EnumValueOptions\"\x90\x01\n\x16ServiceDescriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x36\n\x06method\x18\x02 \x03(\x0b\x32&.google.protobuf.MethodDescriptorProto\x12\x30\n\x07options\x18\x03 \x01(\x0b\x32\x1f.google.protobuf.ServiceOptions\"\x7f\n\x15MethodDescriptorProto\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\ninput_type\x18\x02 \x01(\t\x12\x13\n\x0boutput_type\x18\x03 \x01(\t\x12/\n\x07options\x18\x04 \x01(\x0b\x32\x1e.google.protobuf.MethodOptions\"\xe9\x03\n\x0b\x46ileOptions\x12\x14\n\x0cjava_package\x18\x01 \x01(\t\x12\x1c\n\x14java_outer_classname\x18\x08 \x01(\t\x12\"\n\x13java_multiple_files\x18\n \x01(\x08:\x05\x66\x61lse\x12,\n\x1djava_generate_equals_and_hash\x18\x14 \x01(\x08:\x05\x66\x61lse\x12\x46\n\x0coptimize_for\x18\t \x01(\x0e\x32).google.protobuf.FileOptions.OptimizeMode:\x05SPEED\x12\x12\n\ngo_package\x18\x0b \x01(\t\x12\"\n\x13\x63\x63_generic_services\x18\x10 \x01(\x08:\x05\x66\x61lse\x12$\n\x15java_generic_services\x18\x11 \x01(\x08:\x05\x66\x61lse\x12\"\n\x13py_generic_services\x18\x12 \x01(\x08:\x05\x66\x61lse\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption\":\n\x0cOptimizeMode\x12\t\n\x05SPEED\x10\x01\x12\r\n\tCODE_SIZE\x10\x02\x12\x10\n\x0cLITE_RUNTIME\x10\x03*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xb8\x01\n\x0eMessageOptions\x12&\n\x17message_set_wire_format\x18\x01 \x01(\x08:\x05\x66\x61lse\x12.\n\x1fno_standard_descriptor_accessor\x18\x02 \x01(\x08:\x05\x66\x61lse\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xbe\x02\n\x0c\x46ieldOptions\x12:\n\x05\x63type\x18\x01 \x01(\x0e\x32#.google.protobuf.FieldOptions.CType:\x06STRING\x12\x0e\n\x06packed\x18\x02 \x01(\x08\x12\x13\n\x04lazy\x18\x05 \x01(\x08:\x05\x66\x61lse\x12\x19\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lse\x12\x1c\n\x14\x65xperimental_map_key\x18\t \x01(\t\x12\x13\n\x04weak\x18\n \x01(\x08:\x05\x66\x61lse\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption\"/\n\x05\x43Type\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04\x43ORD\x10\x01\x12\x10\n\x0cSTRING_PIECE\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"x\n\x0b\x45numOptions\x12\x19\n\x0b\x61llow_alias\x18\x02 \x01(\x08:\x04true\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"b\n\x10\x45numValueOptions\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"`\n\x0eServiceOptions\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"_\n\rMethodOptions\x12\x43\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9e\x02\n\x13UninterpretedOption\x12;\n\x04name\x18\x02 \x03(\x0b\x32-.google.protobuf.UninterpretedOption.NamePart\x12\x18\n\x10identifier_value\x18\x03 \x01(\t\x12\x1a\n\x12positive_int_value\x18\x04 \x01(\x04\x12\x1a\n\x12negative_int_value\x18\x05 \x01(\x03\x12\x14\n\x0c\x64ouble_value\x18\x06 \x01(\x01\x12\x14\n\x0cstring_value\x18\x07 \x01(\x0c\x12\x17\n\x0f\x61ggregate_value\x18\x08 \x01(\t\x1a\x33\n\x08NamePart\x12\x11\n\tname_part\x18\x01 \x02(\t\x12\x14\n\x0cis_extension\x18\x02 \x02(\x08\"\xb1\x01\n\x0eSourceCodeInfo\x12:\n\x08location\x18\x01 \x03(\x0b\x32(.google.protobuf.SourceCodeInfo.Location\x1a\x63\n\x08Location\x12\x10\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01\x12\x10\n\x04span\x18\x02 \x03(\x05\x42\x02\x10\x01\x12\x18\n\x10leading_comments\x18\x03 \x01(\t\x12\x19\n\x11trailing_comments\x18\x04 \x01(\tB)\n\x13\x63om.google.protobufB\x10\x44\x65scriptorProtosH\x01')
308 full_name='google.protobuf.DescriptorProto.ExtensionRange',
314 name='start', full_name='google.protobuf.DescriptorProto.ExtensionRange.start', index=0,
321 name='end', full_name='google.protobuf.DescriptorProto.ExtensionRange.end', index=1,
341 name='DescriptorProto',
342 full_name='google.protobuf.DescriptorProto',
348 name='name', full_name='google.protobuf.DescriptorProto.name', index=0,
355 name='field', full_name='google.protobuf.DescriptorProto
1237 class DescriptorProto(_message.Message): class in inherits:_message.Message
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.h6771 return strcmp(upb_msgdef_fullname(m), "google.protobuf.DescriptorProto") == 0;
6774 return strcmp(upb_msgdef_fullname(m), "google.protobuf.DescriptorProto.ExtensionRange") == 0;
6777 return strcmp(upb_msgdef_fullname(m), "google.protobuf.DescriptorProto.ReservedRange") == 0;
6970 class DescriptorProto : public ::upb::reffed_ptr<const ::upb::MessageDef> { class in namespace:upb::HandlerAttributes::upb::BufferHandle::upb::Handlers::upb::BytesHandler::upb::BytesSink::upb::BufferSource::upbdefs::google::protobuf
6972 DescriptorProto(const ::upb::MessageDef* m, const void *ref_donor = NULL) function in class:upb::HandlerAttributes::upb::BufferHandle::upb::Handlers::upb::BytesHandler::upb::BytesSink::upb::BufferSource::upbdefs::google::protobuf::DescriptorProto
6977 static DescriptorProto get() {
6979 return DescriptorProto(m, &m);
H A Dupb.c5497 UPB_MSGDEF_INIT("google.protobuf.DescriptorProto", 40, 8, UPB_INTTABLE_INIT(0, 0, UPB_CTYPE_PTR, 0, NULL, &arrays[0], 11, 10), UPB_STRTABLE_INIT(10, 15, UPB_CTYPE_PTR, 4, &strentries[0]), false, UPB_SYNTAX_PROTO2, &reftables[0], &reftables[1]),
5498 UPB_MSGDEF_INIT("google.protobuf.DescriptorProto.ExtensionRange", 4, 0, UPB_INTTABLE_INIT(0, 0, UPB_CTYPE_PTR, 0, NULL, &arrays[11], 3, 2), UPB_STRTABLE_INIT(2, 3, UPB_CTYPE_PTR, 2, &strentries[16]), false, UPB_SYNTAX_PROTO2, &reftables[2], &reftables[3]),
5499 UPB_MSGDEF_INIT("google.protobuf.DescriptorProto.ReservedRange", 4, 0, UPB_INTTABLE_INIT(0, 0, UPB_CTYPE_PTR, 0, NULL, &arrays[14], 3, 2), UPB_STRTABLE_INIT(2, 3, UPB_CTYPE_PTR, 2, &strentries[20]), false, UPB_SYNTAX_PROTO2, &reftables[4], &reftables[5]),
6511 /* Start/end handlers for FileDescriptorProto and DescriptorProto (the two
6926 /** Handlers for google.protobuf.DescriptorProto ******************************/
7025 upb_handlers_setstring(h, F(DescriptorProto, name), &msg_name, NULL);
7026 upb_handlers_setstartsubmsg(h, F(DescriptorProto, extension), &msg_startext,
7028 upb_handlers_setstartsubmsg(h, F(DescriptorProto, nested_type),
7030 upb_handlers_setstartsubmsg(h, F(DescriptorProto, field),
7032 upb_handlers_setendsubmsg(h, F(DescriptorProto, fiel
[all...]

Completed in 1548 milliseconds

12