Searched refs:containing_type (Results 1 - 25 of 71) sorted by relevance

123

/external/nanopb-c/generator/google/protobuf/compiler/
H A Dplugin_pb2.py27 containing_type=None, variable
33 message_type=None, enum_type=None, containing_type=None,
40 message_type=None, enum_type=None, containing_type=None,
47 message_type=None, enum_type=None, containing_type=None,
69 containing_type=None, variable
75 message_type=None, enum_type=None, containing_type=None,
82 message_type=None, enum_type=None, containing_type=None,
89 message_type=None, enum_type=None, containing_type=None,
110 containing_type=None, variable
116 message_type=None, enum_type=None, containing_type
[all...]
/external/nanopb-c/generator/proto/
H A Dplugin_pb2.py23 containing_type=None, variable
29 message_type=None, enum_type=None, containing_type=None,
36 message_type=None, enum_type=None, containing_type=None,
43 message_type=None, enum_type=None, containing_type=None,
65 containing_type=None, variable
71 message_type=None, enum_type=None, containing_type=None,
78 message_type=None, enum_type=None, containing_type=None,
85 message_type=None, enum_type=None, containing_type=None,
106 containing_type=None, variable
112 message_type=None, enum_type=None, containing_type
[all...]
H A Dnanopb_pb2.py42 containing_type=None, variable
60 message_type=None, enum_type=None, containing_type=None,
68 message_type=None, enum_type=None, containing_type=None,
76 message_type=None, enum_type=None, containing_type=None,
84 message_type=None, enum_type=None, containing_type=None,
94 containing_type=None, variable
100 message_type=None, enum_type=None, containing_type=None,
107 message_type=None, enum_type=None, containing_type=None,
114 message_type=None, enum_type=None, containing_type=None,
121 message_type=None, enum_type=None, containing_type
[all...]
/external/protobuf/python/google/protobuf/
H A Dmessage_factory.py91 if extension.containing_type.full_name not in self._classes:
92 self.GetPrototype(extension.containing_type)
93 extended_class = self._classes[extension.containing_type.full_name]
132 if extension.containing_type.full_name not in self._classes:
133 self.GetPrototype(extension.containing_type)
134 extended_class = self._classes[extension.containing_type.full_name]
H A Ddescriptor.py123 file, containing_type, serialized_start=None,
137 containing_type: if provided, this is a nested descriptor, with this
152 self.containing_type = containing_type
160 while desc.containing_type is not None:
161 desc = desc.containing_type
193 containing_type: (Descriptor) Reference to the descriptor of the
241 def __init__(self, name, full_name, filename, containing_type, fields,
253 containing_type, serialized_start=serialized_start,
263 field.containing_type
[all...]
H A Ddescriptor_pool.py302 extension_desc.containing_type = self._GetTypeFromScope(
375 containing_type=None,
388 nested.containing_type = desc
390 enum.containing_type = desc
402 containing_type=None, scope=None):
409 containing_type: The type containing this enum.
433 containing_type=containing_type,
473 containing_type=None,
506 extension_desc.containing_type
[all...]
/external/nanopb-c/generator/google/protobuf/
H A Ddescriptor_pb2.py98 containing_type=None, variable
123 containing_type=None, variable
148 containing_type=None, variable
173 containing_type=None, variable
185 containing_type=None, variable
191 message_type=None, enum_type=None, containing_type=None,
213 containing_type=None, variable
219 message_type=None, enum_type=None, containing_type=None,
226 message_type=None, enum_type=None, containing_type=None,
233 message_type=None, enum_type=None, containing_type
311 containing_type=None, variable
345 containing_type=None, variable
415 containing_type=None, variable
494 containing_type=None, variable
536 containing_type=None, variable
578 containing_type=None, variable
620 containing_type=None, variable
669 containing_type=None, variable
761 containing_type=None, variable
803 containing_type=None, variable
874 containing_type=None, variable
909 containing_type=None, variable
937 containing_type=None, variable
965 containing_type=None, variable
993 containing_type=None, variable
1027 containing_type=None, variable
1097 containing_type=None, variable
1145 containing_type=None, variable
[all...]
H A Ddescriptor.py116 file, containing_type, serialized_start=None,
130 containing_type: if provided, this is a nested descriptor, with this
145 self.containing_type = containing_type
153 while desc.containing_type is not None:
154 desc = desc.containing_type
186 containing_type: (Descriptor) Reference to the descriptor of the
226 def __init__(self, name, full_name, filename, containing_type, fields,
238 containing_type, serialized_start=serialized_start,
248 field.containing_type
[all...]
H A Ddescriptor_pool.py276 containing_type=None,
288 nested.containing_type = desc
290 enum.containing_type = desc
297 containing_type=None, scope=None):
304 containing_type: The type containing this enum.
328 containing_type=containing_type,
369 containing_type=None,
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.h83 // otherwise returns false and leaves *output undefined. containing_type
85 virtual bool FindFileContainingExtension(const string& containing_type,
149 bool FindFileContainingExtension(const string& containing_type,
176 Value FindExtension(const string& containing_type, int field_number);
177 bool FindAllExtensionNumbers(const string& containing_type,
294 bool FindFileContainingExtension(const string& containing_type,
323 bool FindFileContainingExtension(const string& containing_type,
352 bool FindFileContainingExtension(const string& containing_type,
H A Ddescriptor_database.cc190 const string& containing_type,
193 make_pair(containing_type, field_number),
199 const string& containing_type,
202 by_extension_.lower_bound(make_pair(containing_type, 0));
205 for (; it != by_extension_.end() && it->first.first == containing_type;
280 const string& containing_type,
283 return MaybeCopy(index_.FindExtension(containing_type, field_number), output);
371 const string& containing_type,
374 return MaybeParse(index_.FindExtension(containing_type, field_number),
418 const string& containing_type,
189 FindExtension( const string& containing_type, int field_number) argument
198 FindAllExtensionNumbers( const string& containing_type, vector<int>* output) argument
279 FindFileContainingExtension( const string& containing_type, int field_number, FileDescriptorProto* output) argument
370 FindFileContainingExtension( const string& containing_type, int field_number, FileDescriptorProto* output) argument
417 FindFileContainingExtension( const string& containing_type, int field_number, FileDescriptorProto* output) argument
495 FindFileContainingExtension( const string& containing_type, int field_number, FileDescriptorProto* output) argument
[all...]
H A Dextension_set_heavy.cc82 const Descriptor* containing_type)
83 : pool_(pool), factory_(factory), containing_type_(containing_type) {}
94 void ExtensionSet::AppendToList(const Descriptor* containing_type, argument
114 containing_type, iter->first));
270 const Message* containing_type,
274 GeneratedExtensionFinder finder(containing_type);
279 containing_type->GetDescriptor());
285 const Message* containing_type,
289 GeneratedExtensionFinder finder(containing_type);
294 containing_type
80 DescriptorPoolExtensionFinder(const DescriptorPool* pool, MessageFactory* factory, const Descriptor* containing_type) argument
269 ParseField(uint32 tag, io::CodedInputStream* input, const Message* containing_type, UnknownFieldSet* unknown_fields) argument
284 ParseMessageSet(io::CodedInputStream* input, const Message* containing_type, UnknownFieldSet* unknown_fields) argument
567 ParseMessageSet(io::CodedInputStream* input, const MessageLite* containing_type) argument
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dgenerator_test.py125 self.assertEqual(unittest_pb2.optional_int32_extension.containing_type,
127 self.assertEqual(unittest_pb2.TestRequired.single.containing_type,
169 unittest_pb2.TestEmptyMessage.DESCRIPTOR.containing_type is None)
171 unittest_pb2.TestAllTypes.DESCRIPTOR.containing_type is None)
173 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type,
176 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type,
179 unittest_pb2.TestAllTypes.RepeatedGroup.DESCRIPTOR.containing_type,
183 self.assertTrue(unittest_pb2._FOREIGNENUM.containing_type is None)
184 self.assertEqual(unittest_pb2._TESTALLTYPES_NESTEDENUM.containing_type,
290 self.assertIs(desc, desc.oneofs[0].containing_type)
[all...]
H A Ddescriptor_pool_test.py111 self.assertEquals(None, msg1.containing_type)
115 self.assertEquals(msg1, nested_msg1.containing_type)
119 self.assertEquals(msg1, nested_enum1.containing_type)
132 self.assertIsNone(msg2.containing_type)
136 self.assertEquals(msg2, nested_msg2.containing_type)
140 self.assertEquals(msg2, nested_enum2.containing_type)
269 test.assertEqual(msg_desc, enum_desc.containing_type)
299 test.assertEqual(containing_type_desc, desc.containing_type)
333 test.assertEqual(msg_desc, field_desc.containing_type)
355 test.assertEqual(msg_desc, field_desc.containing_type)
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_message_field.cc74 HasDescriptorMethods(descriptor->containing_type()) ? "onChanged();" : "";
160 if (HasNestedBuilders(descriptor_->containing_type())) {
185 if (HasNestedBuilders(descriptor_->containing_type())) {
205 if (HasNestedBuilders(descriptor_->containing_type())) {
220 if (HasNestedBuilders(descriptor_->containing_type())) {
269 if (HasNestedBuilders(descriptor_->containing_type())) {
384 if (HasNestedBuilders(descriptor_->containing_type())) {
584 if (HasNestedBuilders(descriptor_->containing_type())) {
601 if (HasNestedBuilders(descriptor_->containing_type())) {
710 if (HasNestedBuilders(descriptor_->containing_type())) {
[all...]
H A Djava_lazy_message_field.cc76 if (HasNestedBuilders(descriptor_->containing_type())) {
95 if (HasNestedBuilders(descriptor_->containing_type())) {
182 if (HasNestedBuilders(descriptor_->containing_type())) {
543 if (HasNestedBuilders(descriptor_->containing_type())) {
728 if (HasNestedBuilders(descriptor_->containing_type())) {
H A Djava_enum.cc199 if (descriptor_->containing_type() == NULL) {
245 "parent", name_resolver_->GetClassName(descriptor_->containing_type(),
247 "descriptor", descriptor_->containing_type()->options()
H A Djava_enum_field.cc76 HasDescriptorMethods(descriptor->containing_type()) ? "onChanged();" : "";
264 if (UseUnknownFieldSet(descriptor_->containing_type())) {
417 if (UseUnknownFieldSet(descriptor_->containing_type())) {
509 HasGeneratedMethods(descriptor_->containing_type())) {
655 if (UseUnknownFieldSet(descriptor_->containing_type())) {
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_enum.cc90 vars["prefix"] = (descriptor_->containing_type() == NULL) ?
208 if (descriptor_->containing_type() == NULL) {
212 vars["parent"] = ClassName(descriptor_->containing_type(), false);
259 if (descriptor_->containing_type() != NULL) {
266 vars["parent"] = ClassName(descriptor_->containing_type(), false);
H A Dcpp_helpers.cc136 while (outer->containing_type() != NULL) outer = outer->containing_type();
149 if (enum_descriptor->containing_type() == NULL) {
156 string result = ClassName(enum_descriptor->containing_type(), qualified);
183 field->containing_type()->FindFieldByCamelcaseName(
H A Dcpp_helpers.h85 field->extension_scope() : field->containing_type();
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.h107 void FixForeignFieldsInField(const Descriptor* containing_type,
113 string FieldReferencingExpression(const Descriptor* containing_type,
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_field.cc91 GOOGLE_CHECK_EQ(field->containing_type(), descriptor_);
H A Djavamicro_helpers.h90 descriptor->containing_type(), descriptor->file());
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_field.cc136 GOOGLE_CHECK_EQ(field->containing_type(), descriptor_);

Completed in 1818 milliseconds

123