Home
last modified time | relevance | path

Searched full:nestedtype (Results 1 – 25 of 45) sorted by relevance

12

/external/llvm-project/clang/test/Index/Core/
Dindex-instantiated-source.cpp29 struct NestedType { struct in TemplateClass
30 // CHECK: [[@LINE-1]]:10 | struct/C++ | NestedType | c:@ST>2#T#T@TemplateClass@S@NestedType |
33 // CHECK: [[@LINE-1]]:7 | field/C++ | nestedField | c:@ST>2#T#T@TemplateClass@S@NestedType@FI@neste…
36 // CHECK: [[@LINE-1]]:11 | class/C++ | SubNestedType | c:@ST>2#T#T@TemplateClass@S@NestedType@S@Sub…
41 // CHECK: [[@LINE-1]]:11 | type-alias/C++ | TypeAlias | c:@ST>2#T#T@TemplateClass@S@NestedType@Type…
44 …C | Typedef | c:{{.*}}index-instantiated-source.cpp@ST>2#T#T@TemplateClass@S@NestedType@T@Typedef |
47 // CHECK: [[@LINE-1]]:10 | enum/C | Enum | c:@ST>2#T#T@TemplateClass@S@NestedType@E@Enum |
49 // CHECK: [[@LINE-1]]:7 | enumerator/C | EnumCase | c:@ST>2#T#T@TemplateClass@S@NestedType@E@Enum@E…
69 TemplateClass<int, float>::NestedType nestedSubType; in canonicalizeInstaniationReferences()
70 // CHECK: [[@LINE-1]]:30 | struct/C++ | NestedType | c:@ST>2#T#T@TemplateClass@S@NestedType | in canonicalizeInstaniationReferences()
[all …]
/external/libchrome/base/json/
Djson_value_converter.h235 template <typename NestedType>
236 class NestedValueConverter : public ValueConverter<NestedType> {
240 bool Convert(const base::Value& value, NestedType* field) const override { in Convert()
245 JSONValueConverter<NestedType> converter_;
285 template <typename NestedType>
287 : public ValueConverter<std::vector<std::unique_ptr<NestedType>>> {
292 std::vector<std::unique_ptr<NestedType>>* field) const override { in Convert()
303 std::unique_ptr<NestedType> nested(new NestedType); in Convert()
315 JSONValueConverter<NestedType> converter_;
319 template <typename NestedType>
[all …]
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs94 MessageDescriptor nestedType = TestAllTypes.Types.NestedMessage.Descriptor; in MessageDescriptor()
104 Assert.AreEqual("NestedMessage", nestedType.Name); in MessageDescriptor()
105 Assert.AreEqual("protobuf_unittest.TestAllTypes.NestedMessage", nestedType.FullName); in MessageDescriptor()
106 Assert.AreEqual(UnittestProto3Reflection.Descriptor, nestedType.File); in MessageDescriptor()
107 Assert.AreEqual(messageType, nestedType.ContainingType); in MessageDescriptor()
121 Assert.AreEqual(nestedType, messageType.NestedTypes[0]); in MessageDescriptor()
122 … Assert.AreEqual(nestedType, messageType.FindDescriptor<MessageDescriptor>("NestedMessage")); in MessageDescriptor()
180 … EnumDescriptor nestedType = TestAllTypes.Descriptor.FindDescriptor<EnumDescriptor>("NestedEnum"); in EnumDescriptor()
188 Assert.AreEqual("NestedEnum", nestedType.Name); in EnumDescriptor()
190 nestedType.FullName); in EnumDescriptor()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs172 MessageDescriptor nestedType = TestAllTypes.Types.NestedMessage.Descriptor; in MessageDescriptor()
182 Assert.AreEqual("NestedMessage", nestedType.Name); in MessageDescriptor()
183 Assert.AreEqual("protobuf_unittest3.TestAllTypes.NestedMessage", nestedType.FullName); in MessageDescriptor()
184 Assert.AreEqual(UnittestProto3Reflection.Descriptor, nestedType.File); in MessageDescriptor()
185 Assert.AreEqual(messageType, nestedType.ContainingType); in MessageDescriptor()
199 Assert.AreEqual(nestedType, messageType.NestedTypes[0]); in MessageDescriptor()
200 … Assert.AreEqual(nestedType, messageType.FindDescriptor<MessageDescriptor>("NestedMessage")); in MessageDescriptor()
290 … EnumDescriptor nestedType = TestAllTypes.Descriptor.FindDescriptor<EnumDescriptor>("NestedEnum"); in EnumDescriptor()
298 Assert.AreEqual("NestedEnum", nestedType.Name); in EnumDescriptor()
300 nestedType.FullName); in EnumDescriptor()
[all …]
/external/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
DDescriptorsTest.java152 Descriptor nestedType = TestAllTypes.NestedMessage.getDescriptor(); in testDescriptor() local
162 assertEquals("NestedMessage", nestedType.getName()); in testDescriptor()
164 nestedType.getFullName()); in testDescriptor()
165 assertEquals(UnittestProto.getDescriptor(), nestedType.getFile()); in testDescriptor()
166 assertEquals(messageType, nestedType.getContainingType()); in testDescriptor()
178 assertEquals(nestedType, messageType.getNestedTypes().get(0)); in testDescriptor()
179 assertEquals(nestedType, messageType.findNestedTypeByName("NestedMessage")); in testDescriptor()
294 EnumDescriptor nestedType = TestAllTypes.NestedEnum.getDescriptor(); in testEnumDescriptor() local
303 assertEquals("NestedEnum", nestedType.getName()); in testEnumDescriptor()
305 nestedType.getFullName()); in testEnumDescriptor()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DDescriptorsTest.java150 Descriptor nestedType = TestAllTypes.NestedMessage.getDescriptor(); in testDescriptor() local
159 assertEquals("NestedMessage", nestedType.getName()); in testDescriptor()
160 assertEquals("protobuf_unittest.TestAllTypes.NestedMessage", nestedType.getFullName()); in testDescriptor()
161 assertEquals(UnittestProto.getDescriptor(), nestedType.getFile()); in testDescriptor()
162 assertEquals(messageType, nestedType.getContainingType()); in testDescriptor()
174 assertEquals(nestedType, messageType.getNestedTypes().get(0)); in testDescriptor()
175 assertEquals(nestedType, messageType.findNestedTypeByName("NestedMessage")); in testDescriptor()
281 EnumDescriptor nestedType = TestAllTypes.NestedEnum.getDescriptor(); in testEnumDescriptor() local
289 assertEquals("NestedEnum", nestedType.getName()); in testEnumDescriptor()
290 assertEquals("protobuf_unittest.TestAllTypes.NestedEnum", nestedType.getFullName()); in testEnumDescriptor()
[all …]
/external/llvm-project/llvm/test/DebugInfo/COFF/
Dnested-types.ll116 ; CHECK-NEXT: NestedType {
121 ; CHECK-NEXT: NestedType {
126 ; CHECK-NEXT: NestedType {
131 ; CHECK-NEXT: NestedType {
Dtypes-nested-class.ll44 ; CHECK: NestedType {
/external/dagger2/java/dagger/internal/codegen/binding/
DConfigurationAnnotations.java60 for (TypeElement nestedType : typesIn(subcomponent.getEnclosedElements())) { in getSubcomponentCreator()
61 if (isSubcomponentCreator(nestedType)) { in getSubcomponentCreator()
62 return Optional.of(nestedType); in getSubcomponentCreator()
/external/llvm-project/llvm/test/DebugInfo/PDB/
Dpdbdump-yaml-types.test112 YAML: NestedType:
229 YAML: NestedType:
335 YAML: NestedType:
438 YAML: NestedType:
442 YAML: NestedType:
595 YAML: NestedType:
893 YAML: NestedType:
978 YAML: NestedType:
/external/llvm-project/lld/test/COFF/Inputs/
Dpdb-file-statics-b.yaml273 NestedType:
484 NestedType:
600 NestedType:
720 NestedType:
944 NestedType:
1039 NestedType:
1175 NestedType:
1179 NestedType:
Dpdb-file-statics-a.yaml298 NestedType:
509 NestedType:
625 NestedType:
745 NestedType:
969 NestedType:
1064 NestedType:
1200 NestedType:
1204 NestedType:
/external/llvm-project/lld/test/COFF/
Dpdb-heapsite.yaml443 NestedType:
654 NestedType:
770 NestedType:
890 NestedType:
1114 NestedType:
1209 NestedType:
1345 NestedType:
1349 NestedType:
Dpdb-thunk.yaml1118 NestedType:
1329 NestedType:
1445 NestedType:
1565 NestedType:
1789 NestedType:
1884 NestedType:
2020 NestedType:
2024 NestedType:
/external/perfetto/protos/perfetto/trace/track_event/
Ddebug_annotation.proto95 enum NestedType { enum
101 optional NestedType nested_type = 1;
/external/perfetto/protos/perfetto/trace/chrome/
Dchrome_trace_event.proto21 enum NestedType { enum
25 optional NestedType nested_type = 1;
/external/grpc-grpc/src/csharp/Grpc.Reflection/
DSymbolRegistry.cs123 foreach (var nestedType in messageDescriptor.NestedTypes) in AddMessage()
125 AddMessage(nestedType); in AddMessage()
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/
DTypeIndexDiscoveryTest.cpp276 static NestedTypeRecord NestedType(TypeIndex(54), "MyClass"); variable
495 writeFieldList(NestedType); in TEST_F()
496 checkTypeReferences(0, NestedType.Type); in TEST_F()
527 NestedType, StaticDataMember, VirtualBaseClass, VFPtr, in TEST_F()
532 OneMethod.T1, OneMethod.T2, OneMethod.T3, OneMethod.T4, NestedType.Type, in TEST_F()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DTypeRegistry.cs167 foreach (var nestedType in messageDescriptor.NestedTypes) in AddMessage()
169 AddMessage(nestedType); in AddMessage()
/external/auto/value/src/main/java/com/google/auto/value/processor/
DTypeSimplifier.java286 for (TypeElement nestedType : nestedTypes) { in nonPrivateDeclaredTypes()
287 if (!nestedType.getModifiers().contains(PRIVATE)) { in nonPrivateDeclaredTypes()
288 declared.add(nestedType.asType()); in nonPrivateDeclaredTypes()
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeSpec.java697 for (TypeElement nestedType : ElementFilter.typesIn(typeElement.getEnclosedElements())) { in avoidClashesWithNestedClasses()
698 alwaysQualify(nestedType.getSimpleName().toString()); in avoidClashesWithNestedClasses()
741 for (Class<?> nestedType : clazz.getDeclaredClasses()) { in avoidClashesWithNestedClasses()
742 alwaysQualify(nestedType.getSimpleName()); in avoidClashesWithNestedClasses()
/external/golang-protobuf/descriptor/
Ddescriptor.go90 md = md.NestedType[i]
/external/llvm-project/llvm/test/tools/llvm-readobj/COFF/
Dcodeview-types.test38 // CHECK-DAG: {{^ *NestedType {$}}
/external/llvm/test/tools/llvm-readobj/
Dcodeview-types.test38 // CHECK-DAG: {{^ *NestedType {$}}
/external/llvm/test/DebugInfo/COFF/
Dtypes-nested-class.ll43 ; CHECK: NestedType {

12