Home
last modified time | relevance | path

Searched defs:MyClass1 (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/clang/test/SemaObjC/
H A Dcategory-1.m3 @interface MyClass1 @end interface
11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'… interface in Category1
14 @interface MyClass1 (Category3) interface in Category3
17 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}} interface in Category4
18 @interface MyClass1 (Category5) @end interface in Category5
19 @interface MyClass1 (Category6) @end interface in Category6
20 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}} interface in Category7
21 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}} interface in Category8
24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Catego… interface in Category4
25 @interface MyClass1 (Category7) @end // expected-warning {{duplicate definition of category 'Catego… interface in Category7
[all …]
H A Dmethod-undef-category-warn-1.m3 @interface MyClass1 interface
11 @interface MyClass1(CAT) <P> interface in CAT
15 @implementation MyClass1(CAT) // expected-warning {{method 'Pmeth' in protocol 'P' not implemented}… implementation in CAT
20 @interface MyClass1(DOG) <P> interface in DOG
24 @implementation MyClass1(DOG) // expected-warning {{method 'Pmeth1' in protocol 'P' not implemented… implementation in DOG
29 @implementation MyClass1(CAT1) implementation in CAT1
H A Dprotocol-attribute.m17 @interface MyClass1 <MyProto1> // expected-warning {{'MyProto1' is deprecated}} interface
29 @interface MyClass1 (Category) <MyProto1, Proto2> // expected-warning {{'MyProto1' is deprecated}} interface in Category
47 MyClass1 <MyProto1> *p1; // expected-warning {{'MyProto1' is deprecated}} category
H A DClassPropertyNotObject.m10 @property Class MyClass1; property
/aosp_15_r20/external/mockito/src/test/java/org/mockitousage/bugs/deepstubs/
H A DDeepStubFailingWhenGenericNestedAsRawTypeTest.java13 interface MyClass1<MC2 extends MyClass2> { interface in DeepStubFailingWhenGenericNestedAsRawTypeTest
/aosp_15_r20/external/pytorch/test/dynamo/
H A Dtest_misc.py3241 class MyClass1: class
3269 class MyClass1(metaclass=ExampleMeta): class