| /llvm-project/clang/test/CodeGenCXX/ |
| H A D | dllimport-members.cpp | 64 struct Nested; 237 struct ImportMembers::Nested { struct in ImportMembers 371 void ImportMembers::Nested::normalDef() {} // dllimport ignored in normalDef() argument 372 inline void ImportMembers::Nested::normalInlineDef() {} in normalInlineDef() 373 void ImportMembers::Nested::normalInlineDecl() {} in normalInlineDecl() 374 void ImportMembers::Nested::virtualDef() {} // dllimport ignored in virtualDef() 375 inline void ImportMembers::Nested::virtualInlineDef() {} in virtualInlineDef() 376 void ImportMembers::Nested::virtualInlineDecl() {} in virtualInlineDecl() 377 void ImportMembers::Nested::staticDef() {} // dllimport ignored in staticDef() 378 inline void ImportMembers::Nested::staticInlineDef() {} in staticInlineDef() [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() 260 void ExportMembers::Nested::normalInlineDecl() {} in normalInlineDecl() 261 void ExportMembers::Nested::virtualDef() {} in virtualDef() 262 inline void ExportMembers::Nested::virtualInlineDef() {} in virtualInlineDef() 263 void ExportMembers::Nested::virtualInlineDecl() {} in virtualInlineDecl() 264 void ExportMembers::Nested::staticDef() {} in staticDef() 265 inline void ExportMembers::Nested::staticInlineDef() {} in staticInlineDef() [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;
|
| H A D | mangle-class-nttp.cpp | 38 struct Nested { union { int k; int arr[2]; }; } nested[2]; struct 39 struct Derived : A, Nested { int z; A a_field; } extern derived; 111 template void f<D{&Nested::k, 2}>(); 117 struct DerivedVirtually : virtual A, Nested { int z; }; 143 struct Derived2 : A, Nested { void f(); virtual void g(); };
|
| /llvm-project/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() argument 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() 270 struct Nested { char buffer[sizeof(int)]; }; in basic_constexpr_test() argument 272 Nested middle = std::bit_cast<Nested>(from); in basic_constexpr_test()
|
| /llvm-project/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/clang/test/SemaCXX/ |
| H A D | default2.cpp | 64 struct Nested { struct 69 …Nested* self = this, // expected-error{{invalid use of 'this' outside of a non-static member funct… 72 Nested(int i = 42); 75 int mem7(Nested n = Nested());
|
| H A D | using-decl-templates.cpp | 108 struct Nested {}; struct 109 operator Nested*() {return 0;}; in operator Nested*() 114 using A<T>::operator typename A<T>::Nested*; 115 operator typename A<T>::Nested *() { in operator typename A<T>::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/clang/test/Analysis/ |
| H A D | NewDeleteLeaks.cpp | 200 struct Nested { struct 204 Nested data; 207 Nested allocateWrappingAndReturnNested() { in allocateWrappingAndReturnNested() 217 Nested n = allocateWrappingAndReturnNested(); in caller()
|
| H A D | padding_cpp.cpp | 182 struct Nested { struct 190 Foo<int>::Nested t1; 191 Foo<char>::Nested t2;
|
| /llvm-project/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/lldb/test/API/lang/cpp/unique-types2/ |
| H A D | main.cpp | 7 template <class U> class Nested { class 29 Foo<int>::Nested<char> n1; in main() 30 Foo<int>::Nested<ns::Bar> n2; in main()
|
| /llvm-project/clang/test/SemaTemplate/ |
| H A D | partial-spec-instantiate.cpp | 139 template <typename T, typename = void> class Nested {}; class in GH60778::ClassTemplate 146 class ClassTemplate<>::Nested<T> : public Base<ClassTemplate<>::Nested<T> > {}; class in GH60778::ClassTemplate 152 ClassTemplate<>::Nested<int> instantiation; in use()
|
| 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()
|
| /llvm-project/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/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/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/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/llvm/test/tools/dsymutil/X86/ |
| H A D | odr-uniquing.cpp | 25 struct Nested {}; struct 78 S::Nested n; in foo()
|
| /llvm-project/llvm/test/tools/dsymutil/X86/DWARFLinkerParallel/ |
| H A D | odr-uniquing.cpp | 31 struct Nested {}; struct 54 S::Nested n; in foo()
|
| /llvm-project/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/lldb/test/API/lang/cpp/nsimport/ |
| H A D | main.cpp | 11 namespace Nested namespace 64 using namespace Nested; in main()
|
| /llvm-project/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;
|