Searched refs:SomeTemplate (Results 1 – 5 of 5) sorted by relevance
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()
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;
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;
1 template<typename T> struct SomeTemplate {}; struct
531 struct SomeTemplate { struct532 SomeTemplate(T o = T()) : o(o) {} in SomeTemplate() argument537 struct __declspec(dllexport) InheritFromTemplate : SomeTemplate<int> {};