Home
last modified time | relevance | path

Searched refs:nested_type (Results 1 – 25 of 49) sorted by relevance

12

/third_party/protobuf/php/src/Google/Protobuf/Internal/
DDescriptorPool.php99 foreach ($descriptor->getNestedType() as $nested_type) {
100 $this->addDescriptor($nested_type);
180 foreach ($desc->getNestedType() as $nested_type) {
181 $this->crossLink($nested_type);
183 unset($nested_type);
DDescriptor.php44 private $nested_type = []; variable in Google\\Protobuf\\Internal\\Descriptor
91 $this->nested_type[] = $desc;
96 return $this->nested_type;
DDescriptorProto.php35 private $nested_type; variable in Google\\Protobuf\\Internal\\DescriptorProto
171 return $this->nested_type;
182 $this->nested_type = $arr;
/third_party/protobuf/python/google/protobuf/
Ddescriptor_database.py173 for nested_type in desc_proto.nested_type:
174 for symbol in _ExtractSymbols(nested_type, message_name):
Ddescriptor_pool.py855 for nested in desc_proto.nested_type]
1039 for nested_type in desc_proto.nested_type:
1040 self._SetAllFieldTypes(nested_package, nested_type, scope)
Ddescriptor.py334 for nested_type in nested_types:
335 nested_type.containing_type = self
1100 for nested_proto in desc_proto.nested_type:
/third_party/boost/boost/proto/transform/
Dmake.hpp51 struct nested_type struct
57 struct nested_type<T, false> struct
71 : nested_type<T>
/third_party/protobuf/src/google/protobuf/compiler/java/
Djava_message_lite.cc90 ImmutableMessageLiteGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariables()
102 ImmutableMessageLiteGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariableInitializers()
209 if (IsMapEntry(descriptor_->nested_type(i))) continue; in Generate()
210 ImmutableMessageLiteGenerator messageGenerator(descriptor_->nested_type(i), in Generate()
687 ImmutableMessageLiteGenerator(descriptor_->nested_type(i), context_) in GenerateExtensionRegistrationCode()
Djava_message.cc147 ImmutableMessageGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariables()
184 ImmutableMessageGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariableInitializers()
390 if (IsMapEntry(descriptor_->nested_type(i))) continue; in Generate()
391 ImmutableMessageGenerator messageGenerator(descriptor_->nested_type(i), in Generate()
1151 ImmutableMessageGenerator(descriptor_->nested_type(i), context_) in GenerateExtensionRegistrationCode()
Djava_context.cc108 InitializeFieldGeneratorInfoForMessage(message->nested_type(i)); in InitializeFieldGeneratorInfoForMessage()
/third_party/boost/libs/gil/test/core/pixel/
Dpixel_reference_is_mutable.cpp29 gil::test::fixture::nested_type, in main()
/third_party/boost/boost/hana/
Doptional.hpp50 struct nested_type { }; struct
53 struct nested_type<T, type_tag> { using type = typename T::type; }; struct
57 struct optional<T> : detail::operators::adl<>, detail::nested_type<T> { argument
/third_party/boost/libs/hana/include/boost/hana/
Doptional.hpp50 struct nested_type { }; struct
53 struct nested_type<T, type_tag> { using type = typename T::type; }; struct
57 struct optional<T> : detail::operators::adl<>, detail::nested_type<T> { argument
/third_party/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc575 PrintNestedEnums(*descriptor.nested_type(i)); in PrintNestedEnums()
755 ModuleLevelDescriptorName(*message_descriptor.nested_type(i)); in PrintDescriptor()
830 PrintDescriptor(*containing_descriptor.nested_type(i)); in PrintNestedDescriptors()
907 PrintMessage(*containing_descriptor.nested_type(i), prefix, to_register, in PrintNestedMessages()
924 FixForeignFieldsInDescriptor(*descriptor.nested_type(i), &descriptor); in FixForeignFieldsInDescriptor()
1133 FixForeignFieldsInNestedExtensions(*descriptor.nested_type(i)); in FixForeignFieldsInNestedExtensions()
1421 FixOptionsForMessage(*descriptor.nested_type(i)); in FixOptionsForMessage()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.cc822 if (HasLazyFields(descriptor->nested_type(idx), options)) { in HasLazyFields()
852 if (HasRepeatedFields(descriptor->nested_type(i))) return true; in HasRepeatedFields()
876 if (HasStringPieceFields(descriptor->nested_type(i), options)) return true; in HasStringPieceFields()
899 if (HasCordFields(descriptor->nested_type(i), options)) return true; in HasCordFields()
915 if (HasExtensionsOrExtendableMessage(descriptor->nested_type(i))) { in HasExtensionsOrExtendableMessage()
937 if (HasMapFields(descriptor->nested_type(i))) return true; in HasMapFields()
952 if (HasEnumDefinitions(message_type->nested_type(i))) return true; in HasEnumDefinitions()
1116 Flatten(descriptor->nested_type(i), flatten); in Flatten()
1227 ListAllFields(d->nested_type(i), fields); in ListAllFields()
/third_party/grpc/third_party/upb/upbc/
Dcommon.cc14 AddMessages(message->nested_type(i), messages); in AddMessages()
Dprotoc-gen-upbdefs.cc37 GenerateMessageDefAccessor(d->nested_type(i), output); in GenerateMessageDefAccessor()
Dgenerator.cc99 AddMessages(message->nested_type(i), messages); in AddMessages()
109 AddEnums(message->nested_type(i), enums); in AddEnums()
812 GenerateMessageDefAccessor(d->nested_type(i), output); in GenerateMessageDefAccessor()
/third_party/protobuf/src/google/protobuf/compiler/ruby/
Druby_generator.cc276 if (!GenerateMessage(message->nested_type(i), printer, error)) { in GenerateMessage()
384 GenerateMessageAssignment(nested_prefix, message->nested_type(i), printer); in GenerateMessageAssignment()
481 if (UsesTypeFromFile(message->nested_type(i), file, error)) { in UsesTypeFromFile()
/third_party/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_message.cc324 if (!IsMapEntryMessage(descriptor_->nested_type(i))) { in Generate()
326 descriptor_->nested_type(i), this->options()); in Generate()
369 if (!IsMapEntryMessage(descriptor_->nested_type(i))) { in HasNestedGeneratedTypes()
/third_party/protobuf/src/google/protobuf/
Ddescriptor_database.cc58 for (const auto& d : desc_proto.nested_type()) { in RecordMessageNames()
258 if (!AddNestedExtensions(filename, message_type.nested_type(i), value)) in AddNestedExtensions()
736 for (const auto& nested_type : message_type.nested_type()) { in AddNestedExtensions() local
737 if (!AddNestedExtensions(filename, nested_type)) return false; in AddNestedExtensions()
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_file.cc66 if (MessageContainsEnums(message->nested_type(i))) { in MessageContainsEnums()
80 if (MessageContainsExtensions(message->nested_type(i))) { in MessageContainsExtensions()
/third_party/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py955 nested_type = message_type.nested_type.add()
956 nested_type.name = 'Sub'
957 enum_type = nested_type.enum_type.add()
973 enum_field = nested_type.field.add()
/third_party/protobuf/src/google/protobuf/compiler/
Dparser_unittest.cc3048 const DescriptorProto& bar = file_.message_type(0).nested_type(0); in TEST_F()
3049 const DescriptorProto& baz = bar.nested_type(0); in TEST_F()
3050 const DescriptorProto& qux = file_.message_type(0).nested_type(1); in TEST_F()
3074 const DescriptorProto& bar = file_.message_type(0).nested_type(0); in TEST_F()
3075 const DescriptorProto& baz = file_.message_type(0).nested_type(1); in TEST_F()
3076 const DescriptorProto& qux = baz.nested_type(0); in TEST_F()
/third_party/protobuf/benchmarks/util/
Dschema_proto2_to_proto3_util.h70 StripMessage(old_message->nested_type(i), in StripMessage()

12