HomeSort by relevance Sort by last modified time
    Searched defs:SomeTemplate (Results 1 - 4 of 4) sorted by null

  /external/clang/test/Modules/Inputs/
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;
cxx-templates-common.h 1 template<typename T> struct SomeTemplate {};
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;
  /external/clang/test/CodeGenCXX/
dllexport.cpp 531 struct SomeTemplate {
532 SomeTemplate(T o = T()) : o(o) {}
535 // MSVC2015-DAG: define weak_odr dllexport {{.+}} @"\01??4?$SomeTemplate@H@@Q{{.+}}@$$Q{{.+}}@@Z"
536 // MSVC2013-DAG: define weak_odr dllexport {{.+}} @"\01??4?$SomeTemplate@H@@Q{{.+}}0@A{{.+}}0@@Z"
537 struct __declspec(dllexport) InheritFromTemplate : SomeTemplate<int> {};
539 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01??_F?$SomeTemplate@H@@QAEXXZ"({{.*}}) {{#[0-9]+}} comdat
    [all...]

Completed in 314 milliseconds