Searched refs:SomeTemplate (Results 1 – 11 of 11) sorted by relevance
/external/llvm-project/clang/test/Modules/ |
D | cxx-templates.cpp | 159 typedef SomeTemplate<int*> SomeTemplateIntPtr; 160 typedef SomeTemplate<int&> SomeTemplateIntRef; 161 SomeTemplate<char*> some_template_char_ptr; 162 SomeTemplate<char&> some_template_char_ref; 164 void testImplicitSpecialMembers(SomeTemplate<char[1]> &a, in testImplicitSpecialMembers() 165 const SomeTemplate<char[1]> &b, in testImplicitSpecialMembers() 166 SomeTemplate<char[2]> &c, in testImplicitSpecialMembers() 167 const SomeTemplate<char[2]> &d) { in testImplicitSpecialMembers()
|
/external/clang/test/Modules/ |
D | cxx-templates.cpp | 159 typedef SomeTemplate<int*> SomeTemplateIntPtr; 160 typedef SomeTemplate<int&> SomeTemplateIntRef; 161 SomeTemplate<char*> some_template_char_ptr; 162 SomeTemplate<char&> some_template_char_ref; 164 void testImplicitSpecialMembers(SomeTemplate<char[1]> &a, in testImplicitSpecialMembers() 165 const SomeTemplate<char[1]> &b, in testImplicitSpecialMembers() 166 SomeTemplate<char[2]> &c, in testImplicitSpecialMembers() 167 const SomeTemplate<char[2]> &d) { in testImplicitSpecialMembers()
|
/external/clang/test/Modules/Inputs/ |
D | cxx-templates-b.h | 14 template<typename T> struct SomeTemplate<T&> {}; 15 template<typename T> struct SomeTemplate<T&>; 16 typedef SomeTemplate<int&> SomeTemplateIntRef; 51 SomeTemplate<char[1]> a; 52 SomeTemplate<char[2]> b, c;
|
D | cxx-templates-a.h | 14 template<typename T> struct SomeTemplate<T*>; 15 template<typename T> struct SomeTemplate<T*> {}; 16 typedef SomeTemplate<int*> SomeTemplateIntPtr; 29 SomeTemplate<char[2]> a; 30 SomeTemplate<char[1]> b, c;
|
D | cxx-templates-common.h | 1 template<typename T> struct SomeTemplate {}; struct
|
/external/llvm-project/clang/test/Modules/Inputs/ |
D | cxx-templates-b.h | 14 template<typename T> struct SomeTemplate<T&> {}; 15 template<typename T> struct SomeTemplate<T&>; 16 typedef SomeTemplate<int&> SomeTemplateIntRef; 51 SomeTemplate<char[1]> a; 52 SomeTemplate<char[2]> b, c;
|
D | cxx-templates-a.h | 14 template<typename T> struct SomeTemplate<T*>; 15 template<typename T> struct SomeTemplate<T*> {}; 16 typedef SomeTemplate<int*> SomeTemplateIntPtr; 29 SomeTemplate<char[2]> a; 30 SomeTemplate<char[1]> b, c;
|
D | cxx-templates-common.h | 1 template<typename T> struct SomeTemplate {}; struct
|
/external/llvm-project/llvm/test/Demangle/ |
D | ms-operators.test | 167 ??_F?$SomeTemplate@H@@QAEXXZ 168 ; CHECK: void __thiscall SomeTemplate<int>::`default ctor closure'(void) 194 ??_O?$SomeTemplate@H@@QAEXXZ 195 ; CHECK: void __thiscall SomeTemplate<int>::`copy ctor closure'(void)
|
/external/clang/test/CodeGenCXX/ |
D | dllexport.cpp | 531 struct SomeTemplate { struct 532 SomeTemplate(T o = T()) : o(o) {} in SomeTemplate() function 537 struct __declspec(dllexport) InheritFromTemplate : SomeTemplate<int> {};
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | dllexport.cpp | 530 struct SomeTemplate { struct 531 SomeTemplate(T o = T()) : o(o) {} in SomeTemplate() argument 536 struct __declspec(dllexport) InheritFromTemplate : SomeTemplate<int> {};
|