Lines Matching refs:protocol
2 // RUN: %clang_cc1 -objcmt-migrate-protocol-conformance -mt-migrate-directory %t %s -x objective-c …
8 @protocol P
12 @interface Test1 // Test for no super class and no protocol list
19 @protocol P1 @end
20 @protocol P2 @end
22 @interface Test2 <P1, P2> // Test for no super class and with protocol list
33 @interface Test3 : NSObject { // Test for Super class and no protocol list
42 @interface Test4 : NSObject <P1, P2> // Test for Super class and protocol list
50 @protocol P3
54 @protocol P4
65 @protocol P5 <P3, P4>
69 @protocol P6 <P3, P4, P5>
84 @protocol EmptyProtocol
87 @protocol OptionalMethodsOnly
93 @protocol OptionalPropertiesOnly
98 @protocol OptionalEvrything
105 @protocol UIApplicationDelegate
119 @protocol CBCentralManagerDelegate;
121 @protocol CBCentralManagerDelegate