Home
last modified time | relevance | path

Searched refs:NestedType (Results 1 – 14 of 14) sorted by relevance

/llvm-project/clang/test/Index/Core/
H A Dindex-instantiated-source.cpp29 struct NestedType { struct in TemplateClass
69 TemplateClass<int, float>::NestedType nestedSubType; in canonicalizeInstaniationReferences()
75 TT::NestedType::SubNestedType subNestedType(0); in canonicalizeInstaniationReferences()
79 TT::NestedType::TypeAlias nestedTypeAlias; in canonicalizeInstaniationReferences()
81 TT::NestedType::Typedef nestedTypedef; in canonicalizeInstaniationReferences()
84 TT::NestedType::Enum nestedEnum; in canonicalizeInstaniationReferences()
86 (void)TT::NestedType::Enum::EnumCase; in canonicalizeInstaniationReferences()
/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSVals.cpp152 QualType NestedType = Visit(LI.getLoc()); in VisitLocAsInteger() local
153 if (NestedType.isNull()) in VisitLocAsInteger()
154 return NestedType; in VisitLocAsInteger()
157 NestedType->isSignedIntegerType()); in VisitLocAsInteger()
/llvm-project/llvm/unittests/DebugInfo/LogicalView/
H A DLogicalElementsTest.cpp35 LVType *NestedType = nullptr; member in __anonb3007c9e0111::ReaderTestElements
117 CREATE(NestedType, createType); in createElements()
228 add(NestedScope, NestedType); in addElements()
272 set(NestedType, "NestedType", 0x1040, 1040); in initElements()
H A DCompareElementsTest.cpp40 LVType *NestedType = nullptr; member in __anon8e4c552a0111::ReaderTestCompare
116 CREATE(NestedType, createType, setIsBase); in createElements()
215 Insert(true, NestedScope, NestedType); in addElements()
240 set(NestedType, "NestedType", 0x1040, 1040); in initElements()
/llvm-project/llvm/test/DebugInfo/COFF/
H A Dnested-types.ll116 ; CHECK-NEXT: NestedType {
121 ; CHECK-NEXT: NestedType {
126 ; CHECK-NEXT: NestedType {
131 ; CHECK-NEXT: NestedType {
H A Dtypes-nested-class.ll44 ; CHECK: NestedType {
/llvm-project/clang/test/SemaTemplate/
H A Dfunction-decl-nested-type-alias.cpp4 using Type = typename A::NestedType; // expected-error {{type 'float' cannot be used prior to '::' …
/llvm-project/llvm/unittests/DebugInfo/CodeView/
H A 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()
/llvm-project/llvm/test/DebugInfo/PDB/
H A 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:
/llvm-project/llvm/test/tools/llvm-readobj/COFF/
H A Dcodeview-types.test38 // CHECK-DAG: {{^ *NestedType {$}}
/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2720 LVElement *NestedType = getElement(StreamTPI, Nested.getNestedType()); in visitKnownMember()
2721 Typedef->setType(NestedType); in visitKnownMember()
2725 if (NestedType && NestedType->getIsNested()) { in visitKnownMember()
2730 StringRef NestedTypeName = NestedType->getName(); in visitKnownMember()
2738 if (!NestedType->getIsScopedAlready()) { in visitKnownMember()
2739 Scope->addElement(NestedType); in visitKnownMember()
2740 NestedType->setIsScopedAlready(); in visitKnownMember()
2741 NestedType->updateLevel(Scope); in visitKnownMember()
2726 LVElement *NestedType = getElement(StreamTPI, Nested.getNestedType()); visitKnownMember() local
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewTypes.def72 MEMBER_RECORD(LF_NESTTYPE, 0x1510, NestedType)
H A DTypeRecord.h375 : TypeRecord(TypeRecordKind::NestedType), Type(Type), Name(Name) {} in NestedTypeRecord()
/llvm-project/llvm/unittests/CodeGen/
H A DDIEHashTest.cpp542 TEST_F(DIEHashTest, NestedType) { in TEST_F() argument