Lines Matching refs:parent
80 DescriptorProto* AddNestedMessage(DescriptorProto* parent,
82 DescriptorProto* result = parent->add_nested_type();
94 EnumDescriptorProto* AddNestedEnum(DescriptorProto* parent,
96 EnumDescriptorProto* result = parent->add_enum_type();
108 FieldDescriptorProto* AddField(DescriptorProto* parent, const std::string& name,
111 FieldDescriptorProto* result = parent->add_field();
133 FieldDescriptorProto* AddNestedExtension(DescriptorProto* parent,
138 FieldDescriptorProto* result = parent->add_extension();
147 DescriptorProto::ExtensionRange* AddExtensionRange(DescriptorProto* parent,
149 DescriptorProto::ExtensionRange* result = parent->add_extension_range();
155 DescriptorProto::ReservedRange* AddReservedRange(DescriptorProto* parent,
157 DescriptorProto::ReservedRange* result = parent->add_reserved_range();
164 EnumDescriptorProto* parent, int start, int end) {
165 EnumDescriptorProto::EnumReservedRange* result = parent->add_reserved_range();
3865 // nested within a parent package which this file is also in, and we don't
3866 // include that parent package in the name (i.e. we do a relative lookup)...