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

  /external/clang/test/Modules/
cxx-templates.cpp 4 // RUN: not %clang_cc1 -x objective-c++ -fmodules -fimplicit-module-maps -fno-modules-error-recovery -fmodules-cache-path=%t -I %S/Inputs %s -std=c++14 -ast-dump -ast-dump-filter SomeTemplate 2>/dev/null | FileCheck %s --check-prefix=CHECK-DUMP
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,
165 const SomeTemplate<char[1]> &b,
166 SomeTemplate<char[2]> &c,
167 const SomeTemplate<char[2]> &d) {
250 // CHECK-DUMP: ClassTemplateDecl {{.*}} <{{.*[/\\]}}cxx-templates-common.h:1:1, {{.*}}> col:{{.*}} in cxx_templates_common SomeTemplate
    [all...]
  /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-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;
cxx-templates-common.h 1 template<typename T> struct SomeTemplate {};
  /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 445 milliseconds