Home
last modified time | relevance | path

Searched refs:PublicClass (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/CXX/temp/temp.spec/
H A Dpart.spec.cpp17 class PublicClass {}; class in TestClass
96 template struct IT2<TestClass::PublicClass, TestClass::PublicClass>;
103 template class IT6<TestClass::PublicClass>::template NIT1<TestClass::PublicClass>;
105 template struct IT7<TestClass::PublicClass, TestClass::TemplatePublicClass<TestClass::PublicClass>>;
170 template <> struct CT2<TestClass::PublicClass, TestClass::PublicClass>;
177 template <> template <> class CT6<TestClass::PublicClass>::NCT1<TestClass::PublicClass>;
183 template <> class CT2<TestClass::PublicClass, TestClass::PublicClass> final {};
190 template <> template <> class CT6<TestClass::PublicClass>::NCT1<TestClass::PublicClass> {};
329 template <typename T> struct CTT2<T, TestClass::PublicClass, TestClass::PublicClass> final {};
330 template <typename T> struct CTT2<TestClass::PublicClass, T, TestClass::PublicClass> {};
[all …]
/llvm-project-15.0.7/clang/test/Analysis/inlining/
H A DDynDispatchBifurcate.m14 @interface PublicClass () { interface in int
21 @implementation PublicClass implementation
45 @interface MyClassWithPublicParent : PublicClass
141 int testCallToPublicAPI(PublicClass *p) {
161 int testPublicProperty(PublicClass *p) {
169 int testExtension(PublicClass *p) {
178 int testPropertySynthesized(PublicClass *p) {
H A DInlineObjCInstanceMethod.h22 @interface PublicClass : NSObject {
36 @interface PublicSubClass : PublicClass