| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | dllimport-members.cpp | 64 struct Nested; 237 struct ImportMembers::Nested { struct in ImportMembers 381 USEMF(ImportMembers::Nested, normalDef) 382 USEMF(ImportMembers::Nested, normalDecl) 383 USEMF(ImportMembers::Nested, normalInclass) 386 USEMF(ImportMembers::Nested, virtualDef) 387 USEMF(ImportMembers::Nested, virtualDecl) 391 USEMF(ImportMembers::Nested, staticDef) 392 USEMF(ImportMembers::Nested, staticDecl) 400 USEMF(ImportMembers::Nested, ignored) [all …]
|
| H A D | dllexport-members.cpp | 27 struct Nested; 156 struct ExportMembers::Nested { struct in ExportMembers 258 void ExportMembers::Nested::normalDef() {} in normalDef() argument 259 inline void ExportMembers::Nested::normalInlineDef() {} in normalInlineDef() 261 void ExportMembers::Nested::virtualDef() {} in virtualDef() 264 void ExportMembers::Nested::staticDef() {} in staticDef() 267 void ExportMembers::Nested::ignored() {} in ignored() 268 void ExportMembers::Nested::protectedDef() {} in protectedDef() 270 void ExportMembers::Nested::privateDef() {} in privateDef() 273 int ExportMembers::Nested::StaticField = 1; [all …]
|
| H A D | cxx11-exception-spec.cpp | 110 template<typename T> struct Nested { struct 118 Nested<int>().f<true, char>(); in j() 120 Nested<long>().f<false, long>(); in j()
|
| H A D | debug-info-ms-abi.cpp | 11 struct Nested {}; struct 14 Foo::Nested n;
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.spec/ |
| H A D | p5.cpp | 36 struct Nested; 37 friend struct Nested; 39 struct Nested { struct 40 Nested() {} in Nested() function
|
| /llvm-project-15.0.7/libcxx/test/std/numerics/bit/bit.cast/ |
| H A D | bit_cast.pass.cpp | 46 struct Nested { T x; }; in test_roundtrip_through_nested_T() struct 47 static_assert(sizeof(Nested) == sizeof(T)); in test_roundtrip_through_nested_T() 49 Nested middle = std::bit_cast<Nested>(from); in test_roundtrip_through_nested_T() 51 Nested middle2 = std::bit_cast<Nested>(to); in test_roundtrip_through_nested_T() 248 struct Nested { char buffer[sizeof(int)]; }; in basic_constexpr_test() struct 250 Nested middle = std::bit_cast<Nested>(from); in basic_constexpr_test()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | default2.cpp | 63 struct Nested { struct 68 …Nested* self = this, // expected-error{{invalid use of 'this' outside of a non-static member funct… 71 Nested(int i = 42); 74 int mem7(Nested n = Nested());
|
| H A D | implicit-exception-spec.cpp | 32 struct Nested { struct 35 ExceptionIf<noexcept(Nested())>::f(); // expected-note {{in evaluation of exception spec}} 49 struct Nested { struct 51 T() noexcept(!noexcept(Nested())); // expected-note {{in evaluation of exception spec}}
|
| /llvm-project-15.0.7/clang/test/ASTMerge/namespace/Inputs/ |
| H A D | namespace2.cpp | 20 namespace Nested { namespace 31 namespace TestAliasName = Enclosing::Nested; 33 namespace AliasWithSameName = Enclosing::Nested;
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
| H A D | p6.cpp | 10 struct Nested { struct 20 X0<int>::Nested nested; // expected-note{{implicit instantiation first required here}} in use_X0_int() 33 struct X0<int>::Nested { }; // expected-error{{after instantiation}} struct in X0
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/Inputs/ |
| H A D | every-class.cpp | 20 struct Nested { struct 45 f(Nested{}); in main() 47 f(Nested::F{}); in main()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/COFF/ |
| H A D | types-nested-class.ll | 7 ; struct Nested {}; 39 ; CHECK: Name: A::Nested 45 ; CHECK: Type: A::Nested (0x1001) 46 ; CHECK: Name: Nested 97 !8 = !DICompositeType(tag: DW_TAG_structure_type, name: "Nested", scope: !6, file: !3, line: 2, siz…
|
| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | dependent-base-classes.cpp | 40 class Nested { }; class 48 class HasDepBase::Nested nested; in foo() 57 class NoDepBase::Nested nested; // expected-error{{no class named 'Nested' in 'NoDepBase<T>'}} in foo()
|
| H A D | injected-class-name.cpp | 68 template<typename> struct Nested { struct 69 …template<typename> struct Nested; // expected-error {{member 'Nested' has the same name as its cla…
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/class-loading-via-member-typedef/ |
| H A D | main.cpp | 8 struct Nested { struct 18 StructWithNested::Nested<int>::OtherTypedef m; argument
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/X86/ |
| H A D | odr-uniquing.cpp | 23 struct Nested {}; struct 76 S::Nested n; in foo()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | padding_cpp.cpp | 182 struct Nested { struct 190 Foo<int>::Nested t1; 191 Foo<char>::Nested t2;
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/nsimport/ |
| H A D | main.cpp | 11 namespace Nested namespace 64 using namespace Nested; in main()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-move/Inputs/ |
| H A D | multiple_class_test.cpp | 42 int EnclosingMove5::Nested::f() { in f() 46 int EnclosingMove5::Nested::b = 1;
|
| /llvm-project-15.0.7/clang/test/CXX/special/class.init/class.base.init/ |
| H A D | p8-0x.cpp | 51 struct Nested { struct 52 Nested() {} in Nested() function
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/ |
| H A D | pdb-resolve-forward-refs.test | 15 ; CHECK: 0x1054 | LF_STRUCTURE [size = 48] `Nested::F` 16 ; CHECK: unique name: `.?AUF@Nested@@` 19 ; CHECK: 0x1056 | LF_STRUCTURE [size = 44] `Nested` 23 ; CHECK: 0x1057 | LF_STRUCTURE [size = 48] `Nested::F` 24 ; CHECK: unique name: `.?AUF@Nested@@` 87 ; CHECK: 0x108E | LF_STRUCTURE [size = 44] `Nested`
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/ |
| H A D | codeview-types.test | 57 struct Nested; 71 struct Class::Nested {}; 89 Class::Nested b;
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Generic/ |
| H A D | tu-composite.ll | 25 ; CHECK-NEXT: DW_AT_name {{.*}}"Nested" 60 ; struct Nested { }; 71 ; D::Nested e; 78 %"struct.D::Nested" = type { i8 } 106 %e = alloca %"struct.D::Nested", align 1 112 …call void @llvm.dbg.declare(metadata %"struct.D::Nested"* %e, metadata !51, metadata !DIExpression… 145 !22 = !DICompositeType(tag: DW_TAG_structure_type, name: "Nested", line: 12, size: 8, align: 8, fil…
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | nested_types.ll | 11 ; struct Nested {}; 27 ; S::Nested n; 34 ; CHECK: DW_AT_name ("Nested") 92 !23 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Nested", scope: !6, file: !7, li…
|
| /llvm-project-15.0.7/llvm/test/Demangle/ |
| H A D | ms-templates.test | 30 ??0?$Class@V?$Nested@VTypename@@@@@@QAE@XZ 31 ; CHECK: __thiscall Class<class Nested<class Typename>>::Class<class Nested<class Typename>>(void) 32 ??0?$Class@V?$Nested@VTypename@@@@@@QEAA@XZ 33 ; CHECK: __cdecl Class<class Nested<class Typename>>::Class<class Nested<class Typename>>(void)
|