Home | History | Annotate | Download | only in CodeGenObjC

Lines Matching full:protocol

6 @protocol P0;
10 @protocol P1 -im1; @end
12 // Definition triggered by protocol reference.
15 @protocol P2 -im1; @end
16 void f0() { id x = @protocol(P2); }
18 // Forward definition triggered by protocol reference.
21 @protocol P3;
22 void f1() { id x = @protocol(P3); }
27 @protocol P4 -im1; @end
34 @protocol P5;
35 void f2() { id x = @protocol(P5); } // This generates a forward
38 @protocol P5 -im1; @end
40 // Protocol reference following definition.
43 @protocol P6 -im1; @end
46 void f3() { id x = @protocol(P6); }