Home
last modified time | relevance | path

Searched defs:CT1 (Results 1 – 3 of 3) sorted by relevance

/llvm-project/clang/test/CXX/temp/temp.spec/
H A Dpart.spec.cpp153 template <typename T> class CT1 {}; class
179 template <> class CT1<TestClass::PublicClass> final {}; class
180 template <typename T> class CT1<TestClass::TemplatePublicClass<T>> {}; class
181 template <> class CT1<TestClass::TemplatePublicClass<int>> final {}; class
182 template <> class CT1<TestClass::AliasPublicClass> {}; class
206 template <> class CT1<TestClass::ProtectedClass> {}; class
207 template <typename T> class CT1<TestClass::TemplateProtectedClass<T>> final {}; // not full but let… class
208 template <> class CT1<TestClass::TemplateProtectedClass<int>> {}; class
209 template <> class CT1<TestClass::AliasProtectedClass> final {}; class
232 template <> class CT1<TestClass::PrivateClass> final {}; class
[all …]
/llvm-project/clang/unittests/AST/
H A DProfilingTest.cpp51 auto *CT1 = cast<T>(T1->getCanonicalTypeInternal()); in testTypeNode() local
/llvm-project/clang/include/clang/Basic/
H A DExceptionSpecificationType.h65 inline CanThrowResult mergeCanThrow(CanThrowResult CT1, CanThrowResult CT2) { in mergeCanThrow()