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