/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | DescriptorPool.php | 99 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);
|
D | Descriptor.php | 44 private $nested_type = []; variable in Google\\Protobuf\\Internal\\Descriptor 91 $this->nested_type[] = $desc; 96 return $this->nested_type;
|
D | DescriptorProto.php | 35 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/ |
D | descriptor_database.py | 173 for nested_type in desc_proto.nested_type: 174 for symbol in _ExtractSymbols(nested_type, message_name):
|
D | descriptor_pool.py | 855 for nested in desc_proto.nested_type] 1039 for nested_type in desc_proto.nested_type: 1040 self._SetAllFieldTypes(nested_package, nested_type, scope)
|
D | descriptor.py | 334 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/ |
D | make.hpp | 51 struct nested_type struct 57 struct nested_type<T, false> struct 71 : nested_type<T>
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
D | java_message_lite.cc | 90 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()
|
D | java_message.cc | 147 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()
|
D | java_context.cc | 108 InitializeFieldGeneratorInfoForMessage(message->nested_type(i)); in InitializeFieldGeneratorInfoForMessage()
|
/third_party/boost/libs/gil/test/core/pixel/ |
D | pixel_reference_is_mutable.cpp | 29 gil::test::fixture::nested_type, in main()
|
/third_party/boost/boost/hana/ |
D | optional.hpp | 50 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/ |
D | optional.hpp | 50 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/ |
D | python_generator.cc | 575 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/ |
D | cpp_helpers.cc | 822 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/ |
D | common.cc | 14 AddMessages(message->nested_type(i), messages); in AddMessages()
|
D | protoc-gen-upbdefs.cc | 37 GenerateMessageDefAccessor(d->nested_type(i), output); in GenerateMessageDefAccessor()
|
D | generator.cc | 99 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/ |
D | ruby_generator.cc | 276 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/ |
D | csharp_message.cc | 324 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/ |
D | descriptor_database.cc | 58 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/ |
D | objectivec_file.cc | 66 if (MessageContainsEnums(message->nested_type(i))) { in MessageContainsEnums() 80 if (MessageContainsExtensions(message->nested_type(i))) { in MessageContainsExtensions()
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | descriptor_test.py | 955 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/ |
D | parser_unittest.cc | 3048 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/ |
D | schema_proto2_to_proto3_util.h | 70 StripMessage(old_message->nested_type(i), in StripMessage()
|