Lines Matching refs:EXP
12 #define EXP __attribute__((visibility("default"))) macro
13 class EXP C {};
14 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to…
16 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… interface
17 EXP @interface I2 @end
19 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… implementation
20 EXP @implementation I2 @end
22 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{…
23 EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface, protocol, or…
25 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv… protocol
26 EXP @protocol P2 @end