Home
last modified time | relevance | path

Searched refs:Templ (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/clang/test/Index/
Dctor-init-source-loc.cpp17 struct Templ;
20 struct Derived3: Templ<MyBase>::InnerIterator
22 Derived3() : Templ<MyBase>::InnerIterator() {} in Derived3()
81 template<typename Q> struct Templ;
92 struct Derived9: Namespace::Templ<MyBase>::InnerIterator
94 Derived9() : Namespace::Templ<MyBase>::InnerIterator() {} in Derived9()
101 struct Derived10: Namespace::Templ<MyBase>
103 Derived10() : Namespace::Templ<MyBase>() {} in Derived10()
/external/llvm-project/clang/test/CodeGenCXX/
Dapple-kext-indirect-virtual-dtor-call.cpp22 struct Templ { struct
23 virtual ~Templ(); // Out-of-line so that the destructor doesn't cause a vtable
28 struct SubTempl : public Templ<T> { argument
42 t->Templ::~Templ(); in f()
Dapple-kext-indirect-call.cpp19 struct Templ { struct
24 struct SubTempl : public Templ<T> { argument
37 t->Templ::f(); in f()
/external/clang/test/CodeGenCXX/
Dapple-kext-indirect-virtual-dtor-call.cpp22 struct Templ { struct
23 virtual ~Templ(); // Out-of-line so that the destructor doesn't cause a vtable
28 struct SubTempl : public Templ<T> { argument
42 t->Templ::~Templ(); in f()
Dapple-kext-indirect-call.cpp19 struct Templ { struct
24 struct SubTempl : public Templ<T> { argument
37 t->Templ::f(); in f()
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Dmove_convert.pass.cpp36 template <class Templ, class Other>
39 template <template <int> class Templ, int ID1, class Other>
40 struct is_specialization<Templ<ID1>, Other> : std::false_type {};
42 template <template <int> class Templ, int ID1, int ID2>
43 struct is_specialization<Templ<ID1>, Templ<ID2> > : std::true_type {};
45 template <class Templ, class Other>
47 is_specialization<Templ, typename std::decay<Other>::type >::value
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Dmove_convert.pass.cpp37 template <class Templ, class Other>
40 template <template <int> class Templ, int ID1, class Other>
41 struct is_specialization<Templ<ID1>, Other> : std::false_type {};
43 template <template <int> class Templ, int ID1, int ID2>
44 struct is_specialization<Templ<ID1>, Templ<ID2> > : std::true_type {};
46 template <class Templ, class Other>
48 is_specialization<Templ, typename std::decay<Other>::type >::value
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp49 template <class Templ, class Other>
52 template <template <int> class Templ, int ID1, class Other>
53 struct is_specialization<Templ<ID1>, Other> : std::false_type {};
55 template <template <int> class Templ, int ID1, int ID2>
56 struct is_specialization<Templ<ID1>, Templ<ID2> > : std::true_type {};
58 template <class Templ, class Other>
60 is_specialization<Templ, typename std::decay<Other>::type >::value
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp48 template <class Templ, class Other>
51 template <template <int> class Templ, int ID1, class Other>
52 struct is_specialization<Templ<ID1>, Other> : std::false_type {};
54 template <template <int> class Templ, int ID1, int ID2>
55 struct is_specialization<Templ<ID1>, Templ<ID2> > : std::true_type {};
57 template <class Templ, class Other>
59 is_specialization<Templ, typename std::decay<Other>::type >::value
/external/llvm-project/clang/test/SemaCXX/
Dbuiltin-is-constant-evaluated.cpp33 struct Templ { static_assert(V); static_assert(Default); }; struct
34 Templ<__builtin_is_constant_evaluated()> x; // type X<true>
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DMismatchedIteratorChecker.cpp150 const auto *Templ = Func->getPrimaryTemplate(); in checkPreCall() local
151 if (!Templ) in checkPreCall()
154 const auto *TParams = Templ->getTemplateParameters(); in checkPreCall()
/external/llvm-project/clang-tools-extra/clangd/
DFindSymbols.cpp250 if (auto *Templ = llvm::dyn_cast<TemplateDecl>(D)) { in traverseDecl() local
252 if (auto *TD = Templ->getTemplatedDecl()) in traverseDecl()
/external/llvm-project/clang/unittests/AST/
DASTTraverserTest.cpp259 auto Templ = Result[0].getNodeAs<ClassTemplateSpecializationDecl>("fn"); in TEST() local
261 TemplateArgument TA = Templ->getTemplateArgs()[0]; in TEST()