/external/clang/test/Parser/ |
objc-type-printing.m | 7 @interface INTF 8 - (INTF<P1>*) METH; 13 INTF *pintf; 14 INTF<P1>* p1; 15 INTF<P1, P1>* p2; 16 INTF<P1, P3>* p3; 17 INTF<P1, P3, P2>* p4; 18 INTF<P2,P2, P3, P1>* p5;
|
objc-alias-printing.m | 6 @interface INTF @end 8 @compatibility_alias alias INTF; 13 INTF *pi; 14 INTF<P2,P1> *pi2;
|
/external/clang/test/Rewriter/ |
rewrite-protocol-type-1.m | 9 @interface INTF @end 11 INTF <MyProto1> *g1; 13 INTF <MyProto1, MyProto2> *g2, *g3; 15 INTF <MyProto1> * Func(INTF <MyProto1> *p2, INTF<MyProto1> *p3, INTF *p4, INTF<MyProto1> *p5) 20 INTF <MyProto1, MyProto2> * Func1(INTF *p2, INTF<MyProto1, MyProto2> *p3, INTF *p4, INTF<MyProto1> *p5 [all...] |
ivar-encoding-1.m | 3 @interface Intf 14 @implementation Intf
|
metadata-test-1.m | 3 @interface Intf 6 @implementation Intf(Category)
|
metadata-test-2.m | 8 @interface Intf 12 @implementation Intf
|
ivar-encoding-2.m | 3 @implementation Intf
|
id-test-3.m | 7 @interface INTF<P> 11 @implementation INTF
|
rewrite-modern-protocol-1.mm | 7 @interface INTF<NSCopying> 10 @implementation INTF @end
|
rewrite-modern-ivars.mm | 6 @interface INTF 14 id<P, P1> (^ext_block)(id<P>, INTF<P,P1>*, INTF*); 17 INTF<P> *(*imp_fptr)(void (^_block)(id<P>, INTF<P,P1>*)); 22 @implementation INTF @end
|
/external/clang/test/SemaObjC/ |
incompatible-protocol-qualified-types.m | 9 @interface INTF @end 11 INTF <MyProto1> * Func(INTF <MyProto1, MyProto2> *p2) // expected-note{{passing argument to parameter 'p2' here}} 17 INTF <MyProto1> * Func1(INTF <MyProto1, MyProto2> *p2) 22 INTF <MyProto1, MyProto2> * Func2(INTF <MyProto1> *p2) 24 Func(p2); // expected-warning {{incompatible pointer types passing 'INTF<MyProto1> *' to parameter of type 'INTF<MyProto1,MyProto2> *'}} 25 return p2; // expected-warning {{incompatible pointer types returning 'INTF<MyProto1> *' from a function with result type 'INTF<MyProto1,MyProto2> *'} [all...] |
legacy-implementation-1.m | 3 @implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}} 6 INTF* pi; 8 INTF* FUNC()
|
class-conforming-protocol-1.m | 7 @interface INTF 8 - (INTF*) METH1; // expected-note {{previous declaration is here}} 9 - (INTF<P1>*) METH1; // expected-error {{duplicate declaration of method 'METH1'}} 11 - (INTF<P2,P1>*) METH2; // expected-note {{previous declaration is here}} 12 - (INTF<P2,P1,P3>*) METH2; // expected-error {{duplicate declaration of method 'METH2'}} 14 - (INTF<P2,P1,P3>*) METH3; // expected-note {{previous declaration is here}} 15 - (INTF<P3,P1,P2, P3>*) METH3; // expected-warning {{multiple declarations of method 'METH3' found and ignored}} 19 INTF<P2,P1,P3>* p1;
|
protocol-id-test-1.m | 10 @interface INTF<P> // expected-note {{receiver is instance of class declared here}} 14 @implementation INTF 15 - (void)IMeth {INTF<P> *pi; [pi Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
|
protocol-id-test-3.m | 9 @interface INTF @end 11 id<MyProto1> Func(INTF <MyProto1, MyProto2> *p2) // expected-note 2{{passing argument to parameter 'p2' here}} 32 Func(p2); // expected-warning {{passing 'id<MyProto1>' to parameter of incompatible type 'INTF<MyProto1,MyProto2> *'}} 51 INTF<MyProto1> * Hunc(id <MyProto1, MyProto2>p2) 57 INTF<MyProto1> * Hunc1(id <MyProto1, MyProto2>p2) 62 INTF<MyProto1, MyProto2> * Hunc2(id <MyProto1>p2) 64 Func(p2); // expected-warning {{passing 'id<MyProto1>' to parameter of incompatible type 'INTF<MyProto1,MyProto2> *'}} 65 return p2; // expected-warning {{returning 'id<MyProto1>' from a function with incompatible result type 'INTF<MyProto1,MyProto2> *'}} 68 INTF<MyProto1> * Hunc3(id <MyProto2>p2) 70 return p2; // expected-warning {{returning 'id<MyProto2>' from a function with incompatible result type 'INTF<MyProto1> *'} [all...] |
protocol-id-test-2.m | 6 @interface INTF<P> 10 @implementation INTF
|
encode-typeof-test.m | 9 @interface Intf <Proto> 19 @implementation Intf 25 typeof(@encode(typeof(i))) e = @encode(typeof(Intf)); // expected-warning {{initializer-string for char array is too long}}
|
method-warn-unused-attribute.m | 3 @interface INTF 10 void foo(INTF *a) { 13 [INTF c]; // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
|
error-property-gc-attr.m | 4 @interface INTF 10 __weak INTF* AWEAK; 11 __weak INTF* WI; 17 @property (assign) INTF* AWEAK; 18 @property (assign) __weak INTF* WI; 21 @implementation INTF
|
/art/test/022-interface/ |
expected.txt | 1 ImplBSub intf: 205
|
/external/dhcpcd/dhcpcd-hooks/ |
95-configured | 7 intf=p2p 9 intf=$interface 13 setprop dhcp.${intf}.reason "${reason}" 17 setprop dhcp.${intf}.ipaddress "${new_ip_address}" 18 setprop dhcp.${intf}.gateway "${new_routers%% *}" 19 setprop dhcp.${intf}.mask "${new_subnet_mask}" 20 setprop dhcp.${intf}.leasetime "${new_dhcp_lease_time}" 21 setprop dhcp.${intf}.server "${new_dhcp_server_identifier}" 22 setprop dhcp.${intf}.vendorInfo "${new_vendor_encapsulated_options}" 23 setprop dhcp.${intf}.mtu "${new_interface_mtu} [all...] |
/external/clang/test/CodeGenObjC/ |
bitfield-ivar-metadata.m | 3 @interface INTF 12 @implementation INTF
|
encode-test-2.m | 6 // RUN: grep -e "{Intf=@@@@#}" %t 14 @interface Intf <Proto> 24 @implementation Intf 29 const char * en = @encode(Intf);
|
/external/clang/test/SemaObjCXX/ |
objc2-merge-gc-attribue-decl.mm | 2 @interface INTF @end 4 extern INTF* p2; 5 extern __strong INTF* p2; 16 extern INTF* CFRunLoopGetMain3(); 17 extern __strong INTF* CFRunLoopGetMain3(); 19 extern __strong INTF* CFRunLoopGetMain4(); 20 extern INTF* CFRunLoopGetMain4();
|
/hardware/qcom/audio/legacy/libalsa-intf/ |
Android.mk | 10 LOCAL_SHARED_LIBRARIES:= libc libcutils libalsa-intf 18 LOCAL_SHARED_LIBRARIES:= libc libcutils libalsa-intf 25 LOCAL_SHARED_LIBRARIES := libc libcutils libalsa-intf 32 LOCAL_SHARED_LIBRARIES:= libc libcutils libalsa-intf 37 LOCAL_COPY_HEADERS_TO := mm-audio/libalsa-intf 42 LOCAL_MODULE:= libalsa-intf
|