Home
last modified time | relevance | path

Searched defs:CRTP (Results 1 – 4 of 4) sorted by relevance

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dcrtp-constructor-accessibility.cpp5 class CRTP {}; class
15 class CRTP { class
26 class CRTP { class
39 class CRTP { global() class
41 CRTP(int) {} CRTP() function in class_public_user_provided_ctor::CRTP
52 class CRTP { global() class
54 CRTP(int) {} CRTP() function in class_public_multiple_user_provided_ctors::CRTP
57 CRTP(float) {} CRTP() function in class_public_multiple_user_provided_ctors::CRTP
70 class CRTP { global() class
72 CRTP(int) {} CRTP() function in class_protected_ctors::CRTP
78 CRTP(float) {} CRTP() function in class_protected_ctors::CRTP
92 struct CRTP {}; global() struct
102 struct CRTP { global() struct
114 struct CRTP {}; global() struct
130 class CRTP { global() class
142 class CRTP { global() class
153 class CRTP { global() class
164 class CRTP {}; global() class
181 class CRTP {}; global() class
197 class CRTP { global() class
209 class CRTP { global() class
224 class CRTP { global() class
235 class CRTP global() class
246 class CRTP global() class
[all...]
/llvm-project/clang/test/SemaTemplate/
H A Ddeferred-concept-inst.cpp6 struct CRTP { struct
7 void call_foo() in call_foo()
/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DCrtpConstructorAccessibilityCheck.cpp23 static bool isDerivedParameterBefriended(const CXXRecordDecl *CRTP, in isDerivedParameterBefriended() argument
38 static bool isDerivedClassBefriended(const CXXRecordDecl *CRTP, in isDerivedClassBefriended() argument
51 getDerivedParameter(const ClassTemplateSpecializationDecl *CRTP, in getDerivedParameter() argument
[all...]
/llvm-project/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3-2a.cpp178 struct CRTP : CRTPBase<CRTP> {}; struct