FieldDescriptorProto  668 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java     public FieldDescriptorProto toProto() { return proto; }
FieldDescriptorProto  711 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       return proto.getLabel() == FieldDescriptorProto.Label.LABEL_REQUIRED;
FieldDescriptorProto  716 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       return proto.getLabel() == FieldDescriptorProto.Label.LABEL_OPTIONAL;
FieldDescriptorProto  721 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       return proto.getLabel() == FieldDescriptorProto.Label.LABEL_REPEATED;
FieldDescriptorProto  832 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java     private FieldDescriptorProto proto;
FieldDescriptorProto  870 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       public FieldDescriptorProto.Type toProto() {
FieldDescriptorProto  871 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java         return FieldDescriptorProto.Type.valueOf(ordinal() + 1);
FieldDescriptorProto  875 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       public static Type valueOf(final FieldDescriptorProto.Type type) {
FieldDescriptorProto  882 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       if (Type.values().length != FieldDescriptorProto.Type.values().length) {
FieldDescriptorProto  911 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java     private FieldDescriptor(final FieldDescriptorProto proto,
FieldDescriptorProto 1150 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java     private void setProto(final FieldDescriptorProto proto) {
FieldDescriptorProto   36 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java import com.google.protobuf.DescriptorProtos.FieldDescriptorProto;
FieldDescriptorProto   82 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java         FieldDescriptorProto.Type.values().length);
FieldDescriptorProto   84 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java       FieldDescriptorProto.Type protoType = type.toProto();
FieldDescriptorProto  441 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java         .addField(FieldDescriptorProto.newBuilder()
FieldDescriptorProto  442 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java           .setLabel(FieldDescriptorProto.Label.LABEL_OPTIONAL)
FieldDescriptorProto  443 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java           .setType(FieldDescriptorProto.Type.TYPE_INT32)
FieldDescriptorProto  473 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java         .addField(FieldDescriptorProto.newBuilder()
FieldDescriptorProto  474 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java           .setLabel(FieldDescriptorProto.Label.LABEL_OPTIONAL)
FieldDescriptorProto  475 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java           .setType(FieldDescriptorProto.Type.TYPE_INT32)
FieldDescriptorProto  482 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java         .addField(FieldDescriptorProto.newBuilder()
FieldDescriptorProto  483 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java           .setLabel(FieldDescriptorProto.Label.LABEL_OPTIONAL)
FieldDescriptorProto  548 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java             .addField(FieldDescriptorProto.newBuilder()
FieldDescriptorProto  549 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java                 .setLabel(FieldDescriptorProto.Label.LABEL_OPTIONAL)
FieldDescriptorProto  584 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java             .addField(FieldDescriptorProto.newBuilder()
FieldDescriptorProto  585 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java                 .setLabel(FieldDescriptorProto.Label.LABEL_OPTIONAL)
FieldDescriptorProto  618 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java             .addField(FieldDescriptorProto.newBuilder()
FieldDescriptorProto  619 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java                 .setLabel(FieldDescriptorProto.Label.LABEL_REPEATED)
FieldDescriptorProto   59 third_party/protobuf/src/google/protobuf/compiler/parser.cc typedef hash_map<string, FieldDescriptorProto::Type> TypeNameMap;
FieldDescriptorProto   64 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["double"  ] = FieldDescriptorProto::TYPE_DOUBLE;
FieldDescriptorProto   65 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["float"   ] = FieldDescriptorProto::TYPE_FLOAT;
FieldDescriptorProto   66 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["uint64"  ] = FieldDescriptorProto::TYPE_UINT64;
FieldDescriptorProto   67 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["fixed64" ] = FieldDescriptorProto::TYPE_FIXED64;
FieldDescriptorProto   68 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["fixed32" ] = FieldDescriptorProto::TYPE_FIXED32;
FieldDescriptorProto   69 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["bool"    ] = FieldDescriptorProto::TYPE_BOOL;
FieldDescriptorProto   70 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["string"  ] = FieldDescriptorProto::TYPE_STRING;
FieldDescriptorProto   71 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["group"   ] = FieldDescriptorProto::TYPE_GROUP;
FieldDescriptorProto   73 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["bytes"   ] = FieldDescriptorProto::TYPE_BYTES;
FieldDescriptorProto   74 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["uint32"  ] = FieldDescriptorProto::TYPE_UINT32;
FieldDescriptorProto   75 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["sfixed32"] = FieldDescriptorProto::TYPE_SFIXED32;
FieldDescriptorProto   76 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["sfixed64"] = FieldDescriptorProto::TYPE_SFIXED64;
FieldDescriptorProto   77 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["int32"   ] = FieldDescriptorProto::TYPE_INT32;
FieldDescriptorProto   78 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["int64"   ] = FieldDescriptorProto::TYPE_INT64;
FieldDescriptorProto   79 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["sint32"  ] = FieldDescriptorProto::TYPE_SINT32;
FieldDescriptorProto   80 third_party/protobuf/src/google/protobuf/compiler/parser.cc   result["sint64"  ] = FieldDescriptorProto::TYPE_SINT64;
FieldDescriptorProto  643 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::ParseMessageField(FieldDescriptorProto* field,
FieldDescriptorProto  652 third_party/protobuf/src/google/protobuf/compiler/parser.cc                               FieldDescriptorProto::kLabelFieldNumber);
FieldDescriptorProto  653 third_party/protobuf/src/google/protobuf/compiler/parser.cc     FieldDescriptorProto::Label label;
FieldDescriptorProto  662 third_party/protobuf/src/google/protobuf/compiler/parser.cc     FieldDescriptorProto::Type type = FieldDescriptorProto::TYPE_INT32;
FieldDescriptorProto  666 third_party/protobuf/src/google/protobuf/compiler/parser.cc       location.AddPath(FieldDescriptorProto::kTypeFieldNumber);
FieldDescriptorProto  669 third_party/protobuf/src/google/protobuf/compiler/parser.cc       location.AddPath(FieldDescriptorProto::kTypeNameFieldNumber);
FieldDescriptorProto  678 third_party/protobuf/src/google/protobuf/compiler/parser.cc                               FieldDescriptorProto::kNameFieldNumber);
FieldDescriptorProto  687 third_party/protobuf/src/google/protobuf/compiler/parser.cc                               FieldDescriptorProto::kNumberFieldNumber);
FieldDescriptorProto  699 third_party/protobuf/src/google/protobuf/compiler/parser.cc   if (field->has_type() && field->type() == FieldDescriptorProto::TYPE_GROUP) {
FieldDescriptorProto  723 third_party/protobuf/src/google/protobuf/compiler/parser.cc                                 FieldDescriptorProto::kTypeNameFieldNumber);
FieldDescriptorProto  751 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::ParseFieldOptions(FieldDescriptorProto* field,
FieldDescriptorProto  756 third_party/protobuf/src/google/protobuf/compiler/parser.cc                             FieldDescriptorProto::kOptionsFieldNumber);
FieldDescriptorProto  775 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::ParseDefaultAssignment(FieldDescriptorProto* field,
FieldDescriptorProto  786 third_party/protobuf/src/google/protobuf/compiler/parser.cc                             FieldDescriptorProto::kDefaultValueFieldNumber);
FieldDescriptorProto  799 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_INT32:
FieldDescriptorProto  800 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_INT64:
FieldDescriptorProto  801 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_SINT32:
FieldDescriptorProto  802 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_SINT64:
FieldDescriptorProto  803 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_SFIXED32:
FieldDescriptorProto  804 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_SFIXED64: {
FieldDescriptorProto  806 third_party/protobuf/src/google/protobuf/compiler/parser.cc       if (field->type() == FieldDescriptorProto::TYPE_INT32 ||
FieldDescriptorProto  807 third_party/protobuf/src/google/protobuf/compiler/parser.cc           field->type() == FieldDescriptorProto::TYPE_SINT32 ||
FieldDescriptorProto  808 third_party/protobuf/src/google/protobuf/compiler/parser.cc           field->type() == FieldDescriptorProto::TYPE_SFIXED32) {
FieldDescriptorProto  826 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_UINT32:
FieldDescriptorProto  827 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_UINT64:
FieldDescriptorProto  828 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_FIXED32:
FieldDescriptorProto  829 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_FIXED64: {
FieldDescriptorProto  831 third_party/protobuf/src/google/protobuf/compiler/parser.cc       if (field->type() == FieldDescriptorProto::TYPE_UINT32 ||
FieldDescriptorProto  832 third_party/protobuf/src/google/protobuf/compiler/parser.cc           field->type() == FieldDescriptorProto::TYPE_FIXED32) {
FieldDescriptorProto  848 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_FLOAT:
FieldDescriptorProto  849 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_DOUBLE:
FieldDescriptorProto  862 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_BOOL:
FieldDescriptorProto  873 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_STRING:
FieldDescriptorProto  877 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_BYTES:
FieldDescriptorProto  882 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_ENUM:
FieldDescriptorProto  886 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_MESSAGE:
FieldDescriptorProto  887 third_party/protobuf/src/google/protobuf/compiler/parser.cc     case FieldDescriptorProto::TYPE_GROUP:
FieldDescriptorProto 1149 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::ParseExtend(RepeatedPtrField<FieldDescriptorProto>* extensions,
FieldDescriptorProto 1176 third_party/protobuf/src/google/protobuf/compiler/parser.cc     FieldDescriptorProto* field = extensions->Add();
FieldDescriptorProto 1180 third_party/protobuf/src/google/protobuf/compiler/parser.cc           location, FieldDescriptorProto::kExtendeeFieldNumber);
FieldDescriptorProto 1444 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::ParseLabel(FieldDescriptorProto::Label* label) {
FieldDescriptorProto 1446 third_party/protobuf/src/google/protobuf/compiler/parser.cc     *label = FieldDescriptorProto::LABEL_OPTIONAL;
FieldDescriptorProto 1449 third_party/protobuf/src/google/protobuf/compiler/parser.cc     *label = FieldDescriptorProto::LABEL_REPEATED;
FieldDescriptorProto 1452 third_party/protobuf/src/google/protobuf/compiler/parser.cc     *label = FieldDescriptorProto::LABEL_REQUIRED;
FieldDescriptorProto 1458 third_party/protobuf/src/google/protobuf/compiler/parser.cc     *label = FieldDescriptorProto::LABEL_OPTIONAL;
FieldDescriptorProto 1463 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::ParseType(FieldDescriptorProto::Type* type,
FieldDescriptorProto  328 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool ParseMessageField(FieldDescriptorProto* field,
FieldDescriptorProto  340 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool ParseExtend(RepeatedPtrField<FieldDescriptorProto>* extensions,
FieldDescriptorProto  367 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool ParseLabel(FieldDescriptorProto::Label* label);
FieldDescriptorProto  371 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool ParseType(FieldDescriptorProto::Type* type,
FieldDescriptorProto  379 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool ParseFieldOptions(FieldDescriptorProto* field,
FieldDescriptorProto  384 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool ParseDefaultAssignment(FieldDescriptorProto* field,
FieldDescriptorProto 1730 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field1 = file_.message_type(0).field(0);
FieldDescriptorProto 1731 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field2 = file_.message_type(0).field(1);
FieldDescriptorProto 1761 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field1 = file_.extension(0);
FieldDescriptorProto 1762 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field2 = file_.extension(1);
FieldDescriptorProto 1763 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field3 = file_.extension(2);
FieldDescriptorProto 1805 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field1 = file_.message_type(0).extension(0);
FieldDescriptorProto 1806 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field2 = file_.message_type(0).extension(1);
FieldDescriptorProto 1807 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field3 = file_.message_type(0).extension(2);
FieldDescriptorProto 1912 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field = file_.message_type(0).field(0);
FieldDescriptorProto 2184 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& field = file_.message_type(0).field(0);
FieldDescriptorProto 2265 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& bar = foo.field(0);
FieldDescriptorProto 2306 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& bar = foo.field(0);
FieldDescriptorProto 2344 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   const FieldDescriptorProto& bar = foo.field(0);
FieldDescriptorProto 1534 third_party/protobuf/src/google/protobuf/descriptor.cc void FieldDescriptor::CopyTo(FieldDescriptorProto* proto) const {
FieldDescriptorProto 1540 third_party/protobuf/src/google/protobuf/descriptor.cc   proto->set_label(static_cast<FieldDescriptorProto::Label>(
FieldDescriptorProto 1542 third_party/protobuf/src/google/protobuf/descriptor.cc   proto->set_type(static_cast<FieldDescriptorProto::Type>(
FieldDescriptorProto 2297 third_party/protobuf/src/google/protobuf/descriptor.cc   void BuildFieldOrExtension(const FieldDescriptorProto& proto,
FieldDescriptorProto 2301 third_party/protobuf/src/google/protobuf/descriptor.cc   void BuildField(const FieldDescriptorProto& proto,
FieldDescriptorProto 2306 third_party/protobuf/src/google/protobuf/descriptor.cc   void BuildExtension(const FieldDescriptorProto& proto,
FieldDescriptorProto 2335 third_party/protobuf/src/google/protobuf/descriptor.cc                       const FieldDescriptorProto& proto);
FieldDescriptorProto 2482 third_party/protobuf/src/google/protobuf/descriptor.cc                             const FieldDescriptorProto& proto);
FieldDescriptorProto 2493 third_party/protobuf/src/google/protobuf/descriptor.cc                       const FieldDescriptorProto& proto);
FieldDescriptorProto 3316 third_party/protobuf/src/google/protobuf/descriptor.cc void DescriptorBuilder::BuildFieldOrExtension(const FieldDescriptorProto& proto,
FieldDescriptorProto 3784 third_party/protobuf/src/google/protobuf/descriptor.cc     FieldDescriptor* field, const FieldDescriptorProto& proto) {
FieldDescriptorProto 3819 third_party/protobuf/src/google/protobuf/descriptor.cc     bool expecting_enum = (proto.type() == FieldDescriptorProto::TYPE_ENUM) ||
FieldDescriptorProto 4075 third_party/protobuf/src/google/protobuf/descriptor.cc     const FieldDescriptorProto& proto) {
FieldDescriptorProto 4185 third_party/protobuf/src/google/protobuf/descriptor.cc                                        const FieldDescriptorProto& proto) {
FieldDescriptorProto   82 third_party/protobuf/src/google/protobuf/descriptor.h class FieldDescriptorProto;
FieldDescriptorProto  505 third_party/protobuf/src/google/protobuf/descriptor.h   void CopyTo(FieldDescriptorProto* proto) const;
FieldDescriptorProto  177 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, name_),
FieldDescriptorProto  178 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, number_),
FieldDescriptorProto  179 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, label_),
FieldDescriptorProto  180 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, type_),
FieldDescriptorProto  181 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, type_name_),
FieldDescriptorProto  182 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, extendee_),
FieldDescriptorProto  183 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, default_value_),
FieldDescriptorProto  184 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, options_),
FieldDescriptorProto  189 third_party/protobuf/src/google/protobuf/descriptor.pb.cc       FieldDescriptorProto::default_instance_,
FieldDescriptorProto  191 third_party/protobuf/src/google/protobuf/descriptor.pb.cc       GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, _has_bits_[0]),
FieldDescriptorProto  192 third_party/protobuf/src/google/protobuf/descriptor.pb.cc       GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldDescriptorProto, _unknown_fields_),
FieldDescriptorProto  196 third_party/protobuf/src/google/protobuf/descriptor.pb.cc       sizeof(FieldDescriptorProto));
FieldDescriptorProto  485 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     FieldDescriptorProto_descriptor_, &FieldDescriptorProto::default_instance());
FieldDescriptorProto  529 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   delete FieldDescriptorProto::default_instance_;
FieldDescriptorProto  681 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   FieldDescriptorProto::default_instance_ = new FieldDescriptorProto();
FieldDescriptorProto  701 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   FieldDescriptorProto::default_instance_->InitAsDefaultInstance();
FieldDescriptorProto 2396 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_DOUBLE;
FieldDescriptorProto 2397 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_FLOAT;
FieldDescriptorProto 2398 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_INT64;
FieldDescriptorProto 2399 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_UINT64;
FieldDescriptorProto 2400 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_INT32;
FieldDescriptorProto 2401 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_FIXED64;
FieldDescriptorProto 2402 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_FIXED32;
FieldDescriptorProto 2403 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_BOOL;
FieldDescriptorProto 2404 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_STRING;
FieldDescriptorProto 2405 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_GROUP;
FieldDescriptorProto 2406 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_MESSAGE;
FieldDescriptorProto 2407 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_BYTES;
FieldDescriptorProto 2408 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_UINT32;
FieldDescriptorProto 2409 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_ENUM;
FieldDescriptorProto 2410 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_SFIXED32;
FieldDescriptorProto 2411 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_SFIXED64;
FieldDescriptorProto 2412 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_SINT32;
FieldDescriptorProto 2413 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_SINT64;
FieldDescriptorProto 2414 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::Type_MIN;
FieldDescriptorProto 2415 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Type FieldDescriptorProto::Type_MAX;
FieldDescriptorProto 2416 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::Type_ARRAYSIZE;
FieldDescriptorProto 2434 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Label FieldDescriptorProto::LABEL_OPTIONAL;
FieldDescriptorProto 2435 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Label FieldDescriptorProto::LABEL_REQUIRED;
FieldDescriptorProto 2436 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Label FieldDescriptorProto::LABEL_REPEATED;
FieldDescriptorProto 2437 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Label FieldDescriptorProto::Label_MIN;
FieldDescriptorProto 2438 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto_Label FieldDescriptorProto::Label_MAX;
FieldDescriptorProto 2439 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::Label_ARRAYSIZE;
FieldDescriptorProto 2442 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kNameFieldNumber;
FieldDescriptorProto 2443 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kNumberFieldNumber;
FieldDescriptorProto 2444 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kLabelFieldNumber;
FieldDescriptorProto 2445 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kTypeFieldNumber;
FieldDescriptorProto 2446 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kTypeNameFieldNumber;
FieldDescriptorProto 2447 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kExtendeeFieldNumber;
FieldDescriptorProto 2448 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kDefaultValueFieldNumber;
FieldDescriptorProto 2449 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const int FieldDescriptorProto::kOptionsFieldNumber;
FieldDescriptorProto 2452 third_party/protobuf/src/google/protobuf/descriptor.pb.cc FieldDescriptorProto::FieldDescriptorProto()
FieldDescriptorProto 2457 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::InitAsDefaultInstance() {
FieldDescriptorProto 2461 third_party/protobuf/src/google/protobuf/descriptor.pb.cc FieldDescriptorProto::FieldDescriptorProto(const FieldDescriptorProto& from)
FieldDescriptorProto 2467 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::SharedCtor() {
FieldDescriptorProto 2480 third_party/protobuf/src/google/protobuf/descriptor.pb.cc FieldDescriptorProto::~FieldDescriptorProto() {
FieldDescriptorProto 2484 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::SharedDtor() {
FieldDescriptorProto 2502 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::SetCachedSize(int size) const {
FieldDescriptorProto 2507 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const ::google::protobuf::Descriptor* FieldDescriptorProto::descriptor() {
FieldDescriptorProto 2512 third_party/protobuf/src/google/protobuf/descriptor.pb.cc const FieldDescriptorProto& FieldDescriptorProto::default_instance() {
FieldDescriptorProto 2517 third_party/protobuf/src/google/protobuf/descriptor.pb.cc FieldDescriptorProto* FieldDescriptorProto::default_instance_ = NULL;
FieldDescriptorProto 2519 third_party/protobuf/src/google/protobuf/descriptor.pb.cc FieldDescriptorProto* FieldDescriptorProto::New() const {
FieldDescriptorProto 2520 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   return new FieldDescriptorProto;
FieldDescriptorProto 2523 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::Clear() {
FieldDescriptorProto 2556 third_party/protobuf/src/google/protobuf/descriptor.pb.cc bool FieldDescriptorProto::MergePartialFromCodedStream(
FieldDescriptorProto 2717 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::SerializeWithCachedSizes(
FieldDescriptorProto 2784 third_party/protobuf/src/google/protobuf/descriptor.pb.cc ::google::protobuf::uint8* FieldDescriptorProto::SerializeWithCachedSizesToArray(
FieldDescriptorProto 2857 third_party/protobuf/src/google/protobuf/descriptor.pb.cc int FieldDescriptorProto::ByteSize() const {
FieldDescriptorProto 2927 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::MergeFrom(const ::google::protobuf::Message& from) {
FieldDescriptorProto 2929 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   const FieldDescriptorProto* source =
FieldDescriptorProto 2930 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::internal::dynamic_cast_if_available<const FieldDescriptorProto*>(
FieldDescriptorProto 2939 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::MergeFrom(const FieldDescriptorProto& from) {
FieldDescriptorProto 2970 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::CopyFrom(const ::google::protobuf::Message& from) {
FieldDescriptorProto 2976 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::CopyFrom(const FieldDescriptorProto& from) {
FieldDescriptorProto 2982 third_party/protobuf/src/google/protobuf/descriptor.pb.cc bool FieldDescriptorProto::IsInitialized() const {
FieldDescriptorProto 2990 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::Swap(FieldDescriptorProto* other) {
FieldDescriptorProto 3006 third_party/protobuf/src/google/protobuf/descriptor.pb.cc ::google::protobuf::Metadata FieldDescriptorProto::GetMetadata() const {
FieldDescriptorProto   42 third_party/protobuf/src/google/protobuf/descriptor.pb.h class FieldDescriptorProto;
FieldDescriptorProto  399 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline const ::google::protobuf::FieldDescriptorProto& extension(int index) const;
FieldDescriptorProto  400 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::FieldDescriptorProto* mutable_extension(int index);
FieldDescriptorProto  401 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::FieldDescriptorProto* add_extension();
FieldDescriptorProto  402 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >&
FieldDescriptorProto  404 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >*
FieldDescriptorProto  446 third_party/protobuf/src/google/protobuf/descriptor.pb.h   ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto > extension_;
FieldDescriptorProto  626 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline const ::google::protobuf::FieldDescriptorProto& field(int index) const;
FieldDescriptorProto  627 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::FieldDescriptorProto* mutable_field(int index);
FieldDescriptorProto  628 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::FieldDescriptorProto* add_field();
FieldDescriptorProto  629 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >&
FieldDescriptorProto  631 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >*
FieldDescriptorProto  638 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline const ::google::protobuf::FieldDescriptorProto& extension(int index) const;
FieldDescriptorProto  639 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::FieldDescriptorProto* mutable_extension(int index);
FieldDescriptorProto  640 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::FieldDescriptorProto* add_extension();
FieldDescriptorProto  641 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >&
FieldDescriptorProto  643 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >*
FieldDescriptorProto  701 third_party/protobuf/src/google/protobuf/descriptor.pb.h   ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto > field_;
FieldDescriptorProto  702 third_party/protobuf/src/google/protobuf/descriptor.pb.h   ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto > extension_;
FieldDescriptorProto  720 third_party/protobuf/src/google/protobuf/descriptor.pb.h class LIBPROTOBUF_EXPORT FieldDescriptorProto : public ::google::protobuf::Message {
FieldDescriptorProto  722 third_party/protobuf/src/google/protobuf/descriptor.pb.h   FieldDescriptorProto();
FieldDescriptorProto  723 third_party/protobuf/src/google/protobuf/descriptor.pb.h   virtual ~FieldDescriptorProto();
FieldDescriptorProto  725 third_party/protobuf/src/google/protobuf/descriptor.pb.h   FieldDescriptorProto(const FieldDescriptorProto& from);
FieldDescriptorProto  727 third_party/protobuf/src/google/protobuf/descriptor.pb.h   inline FieldDescriptorProto& operator=(const FieldDescriptorProto& from) {
FieldDescriptorProto  741 third_party/protobuf/src/google/protobuf/descriptor.pb.h   static const FieldDescriptorProto& default_instance();
FieldDescriptorProto  743 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(FieldDescriptorProto* other);
FieldDescriptorProto  747 third_party/protobuf/src/google/protobuf/descriptor.pb.h   FieldDescriptorProto* New() const;
FieldDescriptorProto  750 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void CopyFrom(const FieldDescriptorProto& from);
FieldDescriptorProto  751 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void MergeFrom(const FieldDescriptorProto& from);
FieldDescriptorProto  955 third_party/protobuf/src/google/protobuf/descriptor.pb.h   static FieldDescriptorProto* default_instance_;
FieldDescriptorProto 3123 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::FieldDescriptorProto& FileDescriptorProto::extension(int index) const {
FieldDescriptorProto 3126 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto* FileDescriptorProto::mutable_extension(int index) {
FieldDescriptorProto 3129 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto* FileDescriptorProto::add_extension() {
FieldDescriptorProto 3132 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >&
FieldDescriptorProto 3136 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >*
FieldDescriptorProto 3346 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::FieldDescriptorProto& DescriptorProto::field(int index) const {
FieldDescriptorProto 3349 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto* DescriptorProto::mutable_field(int index) {
FieldDescriptorProto 3352 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto* DescriptorProto::add_field() {
FieldDescriptorProto 3355 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >&
FieldDescriptorProto 3359 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >*
FieldDescriptorProto 3371 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::FieldDescriptorProto& DescriptorProto::extension(int index) const {
FieldDescriptorProto 3374 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto* DescriptorProto::mutable_extension(int index) {
FieldDescriptorProto 3377 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto* DescriptorProto::add_extension() {
FieldDescriptorProto 3380 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >&
FieldDescriptorProto 3384 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FieldDescriptorProto >*
FieldDescriptorProto 3507 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_name() const {
FieldDescriptorProto 3510 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_name() {
FieldDescriptorProto 3513 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_name() {
FieldDescriptorProto 3516 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_name() {
FieldDescriptorProto 3522 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::std::string& FieldDescriptorProto::name() const {
FieldDescriptorProto 3525 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_name(const ::std::string& value) {
FieldDescriptorProto 3532 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_name(const char* value) {
FieldDescriptorProto 3539 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_name(const char* value, size_t size) {
FieldDescriptorProto 3546 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::mutable_name() {
FieldDescriptorProto 3553 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::release_name() {
FieldDescriptorProto 3563 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_allocated_name(::std::string* name) {
FieldDescriptorProto 3577 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_number() const {
FieldDescriptorProto 3580 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_number() {
FieldDescriptorProto 3583 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_number() {
FieldDescriptorProto 3586 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_number() {
FieldDescriptorProto 3590 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::int32 FieldDescriptorProto::number() const {
FieldDescriptorProto 3593 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_number(::google::protobuf::int32 value) {
FieldDescriptorProto 3599 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_label() const {
FieldDescriptorProto 3602 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_label() {
FieldDescriptorProto 3605 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_label() {
FieldDescriptorProto 3608 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_label() {
FieldDescriptorProto 3612 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto_Label FieldDescriptorProto::label() const {
FieldDescriptorProto 3615 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_label(::google::protobuf::FieldDescriptorProto_Label value) {
FieldDescriptorProto 3622 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_type() const {
FieldDescriptorProto 3625 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_type() {
FieldDescriptorProto 3628 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_type() {
FieldDescriptorProto 3631 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_type() {
FieldDescriptorProto 3635 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldDescriptorProto_Type FieldDescriptorProto::type() const {
FieldDescriptorProto 3638 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_type(::google::protobuf::FieldDescriptorProto_Type value) {
FieldDescriptorProto 3645 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_type_name() const {
FieldDescriptorProto 3648 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_type_name() {
FieldDescriptorProto 3651 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_type_name() {
FieldDescriptorProto 3654 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_type_name() {
FieldDescriptorProto 3660 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::std::string& FieldDescriptorProto::type_name() const {
FieldDescriptorProto 3663 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_type_name(const ::std::string& value) {
FieldDescriptorProto 3670 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_type_name(const char* value) {
FieldDescriptorProto 3677 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_type_name(const char* value, size_t size) {
FieldDescriptorProto 3684 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::mutable_type_name() {
FieldDescriptorProto 3691 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::release_type_name() {
FieldDescriptorProto 3701 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_allocated_type_name(::std::string* type_name) {
FieldDescriptorProto 3715 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_extendee() const {
FieldDescriptorProto 3718 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_extendee() {
FieldDescriptorProto 3721 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_extendee() {
FieldDescriptorProto 3724 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_extendee() {
FieldDescriptorProto 3730 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::std::string& FieldDescriptorProto::extendee() const {
FieldDescriptorProto 3733 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_extendee(const ::std::string& value) {
FieldDescriptorProto 3740 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_extendee(const char* value) {
FieldDescriptorProto 3747 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_extendee(const char* value, size_t size) {
FieldDescriptorProto 3754 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::mutable_extendee() {
FieldDescriptorProto 3761 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::release_extendee() {
FieldDescriptorProto 3771 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_allocated_extendee(::std::string* extendee) {
FieldDescriptorProto 3785 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_default_value() const {
FieldDescriptorProto 3788 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_default_value() {
FieldDescriptorProto 3791 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_default_value() {
FieldDescriptorProto 3794 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_default_value() {
FieldDescriptorProto 3800 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::std::string& FieldDescriptorProto::default_value() const {
FieldDescriptorProto 3803 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_default_value(const ::std::string& value) {
FieldDescriptorProto 3810 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_default_value(const char* value) {
FieldDescriptorProto 3817 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_default_value(const char* value, size_t size) {
FieldDescriptorProto 3824 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::mutable_default_value() {
FieldDescriptorProto 3831 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::std::string* FieldDescriptorProto::release_default_value() {
FieldDescriptorProto 3841 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_allocated_default_value(::std::string* default_value) {
FieldDescriptorProto 3855 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline bool FieldDescriptorProto::has_options() const {
FieldDescriptorProto 3858 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_has_options() {
FieldDescriptorProto 3861 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_has_options() {
FieldDescriptorProto 3864 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::clear_options() {
FieldDescriptorProto 3868 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline const ::google::protobuf::FieldOptions& FieldDescriptorProto::options() const {
FieldDescriptorProto 3871 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldOptions* FieldDescriptorProto::mutable_options() {
FieldDescriptorProto 3876 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline ::google::protobuf::FieldOptions* FieldDescriptorProto::release_options() {
FieldDescriptorProto 3882 third_party/protobuf/src/google/protobuf/descriptor.pb.h inline void FieldDescriptorProto::set_allocated_options(::google::protobuf::FieldOptions* options) {
FieldDescriptorProto  151 third_party/protobuf/src/google/protobuf/descriptor_database.cc     const FieldDescriptorProto& field,
FieldDescriptorProto  170 third_party/protobuf/src/google/protobuf/descriptor_database.h     bool AddExtension(const FieldDescriptorProto& field,
FieldDescriptorProto   94 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc FieldDescriptorProto* AddField(DescriptorProto* parent,
FieldDescriptorProto   96 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                                FieldDescriptorProto::Label label,
FieldDescriptorProto   97 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                                FieldDescriptorProto::Type type) {
FieldDescriptorProto   98 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   FieldDescriptorProto* result = parent->add_field();
FieldDescriptorProto  106 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc FieldDescriptorProto* AddExtension(FileDescriptorProto* file,
FieldDescriptorProto  109 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                                    FieldDescriptorProto::Label label,
FieldDescriptorProto  110 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                                    FieldDescriptorProto::Type type) {
FieldDescriptorProto  111 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   FieldDescriptorProto* result = file->add_extension();
FieldDescriptorProto  120 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc FieldDescriptorProto* AddNestedExtension(DescriptorProto* parent,
FieldDescriptorProto  123 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                                          FieldDescriptorProto::Label label,
FieldDescriptorProto  124 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                                          FieldDescriptorProto::Type type) {
FieldDescriptorProto  125 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   FieldDescriptorProto* result = parent->add_extension();
FieldDescriptorProto  198 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  199 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  209 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  210 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  407 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_REQUIRED,
FieldDescriptorProto  408 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_STRING);
FieldDescriptorProto  410 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  411 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_ENUM)
FieldDescriptorProto  414 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_REPEATED,
FieldDescriptorProto  415 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_MESSAGE)
FieldDescriptorProto  418 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  419 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_GROUP)
FieldDescriptorProto  428 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_REQUIRED,
FieldDescriptorProto  429 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_STRING);
FieldDescriptorProto  431 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_REQUIRED,
FieldDescriptorProto  432 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_STRING);
FieldDescriptorProto  434 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_REQUIRED,
FieldDescriptorProto  435 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_STRING);
FieldDescriptorProto  659 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  660 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  662 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  663 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  665 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  666 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  668 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  669 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  671 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  672 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  675 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  676 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  678 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  679 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  681 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  682 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  684 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  685 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  687 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  688 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  691 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  692 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  694 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  695 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  697 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  698 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  700 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  701 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto  703 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto  704 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto 1389 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto 1390 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto 1392 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::LABEL_REPEATED,
FieldDescriptorProto 1393 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                  FieldDescriptorProto::TYPE_ENUM)
FieldDescriptorProto 1398 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto 1399 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_MESSAGE)
FieldDescriptorProto 1402 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::LABEL_REPEATED,
FieldDescriptorProto 1403 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                        FieldDescriptorProto::TYPE_GROUP)
FieldDescriptorProto 1530 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc     FieldDescriptorProto* field =
FieldDescriptorProto 1531 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc       AddField(message, "foo", 1, FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto 1532 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc                static_cast<FieldDescriptorProto::Type>(static_cast<int>(type)));
FieldDescriptorProto 1659 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   typedef FieldDescriptorProto FD;  // avoid ugly line wrapping
FieldDescriptorProto 1682 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   FieldDescriptorProto* enum_field =
FieldDescriptorProto 1779 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc            FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto 1780 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc            FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto 1781 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   FieldDescriptorProto* bar_proto =
FieldDescriptorProto 1783 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::LABEL_OPTIONAL,
FieldDescriptorProto 1784 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc              FieldDescriptorProto::TYPE_INT32);
FieldDescriptorProto 1949 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   FieldDescriptorProto proto;
FieldDescriptorProto 1954 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   EXPECT_EQ(FieldDescriptorProto::TYPE_MESSAGE, proto.type());
FieldDescriptorProto 1966 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc   EXPECT_EQ(FieldDescriptorProto::TYPE_ENUM, proto.type());
FieldDescriptorProto  590 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     FieldDescriptorProto* extension = dynamic_proto.mutable_extension(i);