Searched refs:SomeTemplate (Results 1 – 5 of 5) sorted by relevance
158 typedef SomeTemplate<int*> SomeTemplateIntPtr;159 typedef SomeTemplate<int&> SomeTemplateIntRef;160 SomeTemplate<char*> some_template_char_ptr;161 SomeTemplate<char&> some_template_char_ref;163 void testImplicitSpecialMembers(SomeTemplate<char[1]> &a, in testImplicitSpecialMembers()164 const SomeTemplate<char[1]> &b, in testImplicitSpecialMembers()165 SomeTemplate<char[2]> &c, in testImplicitSpecialMembers()166 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
527 struct SomeTemplate { struct528 SomeTemplate(T o = T()) : o(o) {} in SomeTemplate() function531 struct __declspec(dllexport) InheritFromTemplate : SomeTemplate<int> {}; argument