Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:__attribute__

6 -t1 __attribute__((noreturn));
7 - (NSString *)stringByAppendingFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1, 2)));
8 -(void) m0 __attribute__((noreturn));
9 -(void) m1 __attribute__((unused));
10 -(void) m2 __attribute__((stdcall));
11 -(void) m3 __attribute__((optnone));
16 - (int) foo1: (int)arg1 __attribute__((deprecated));
20 - (int) foo2: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable));
21 - (int) foo3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) __attribute__((ns_consumes_self));
25 - (int) foo: (int)arg1 __attribute__((deprecated)){
31 - (int) foo2: (int)arg1 __attribute__((deprecated)) {
34 - (int) foo3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) __attribute__((ns_consumes_self)) {return 0; }
35 - (void) dep __attribute__((deprecated)) { } // OK private methodn
40 #define IBAction void)__attribute__((ibaction)
65 -(id)method __attribute__((deprecated));
67 -(id)method2 __attribute__((aligned(16)));
68 - (id) method3: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((unavailable));
69 - (id) method4: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((unavailable));
73 -(id)method __attribute__((aligned(16))) __attribute__((aligned(16))) __attribute__((deprecated)) {
76 -(id)method1 __attribute__((aligned(16))) {
82 - (id) method3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) {
85 - (id) method4: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((unavailable)) {
90 __attribute__((cdecl)) // expected-warning {{'cdecl' attribute only applies to functions and methods}}
96 @property int p __attribute__((section("__TEXT,foo")));
98 - (id) IMethod :(int) count, ... __attribute__((section("__TEXT,foo")));
100 + (void) CMethod : (id) Obj __attribute__((section("__TEXT,fee")));