Lines Matching refs:__attribute__

6 -t1 __attribute__((noreturn));  method
7 - (NSString *)stringByAppendingFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1…
8 -(void) m0 __attribute__((noreturn)); method
9 -(void) m1 __attribute__((unused)); method
10 -(void) m2 __attribute__((stdcall)); method
11 -(void) m3 __attribute__((optnone)); method
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_…
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_…
35 - (void) dep __attribute__((deprecated)) { } // OK private methodn method
40 #define IBAction void)__attribute__((ibaction)
65 -(id)method __attribute__((deprecated)); method
67 -(id)method2 __attribute__((aligned(16))); method
68 - (id) method3: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((…
69 - (id) method4: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((…
73 -(id)method __attribute__((aligned(16))) __attribute__((aligned(16))) __attribute__((deprecated)) { method
76 -(id)method1 __attribute__((aligned(16))) { method
82 - (id) method3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) {
85 - (id) method4: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((u…
90 __attribute__((cdecl)) // expected-warning {{'cdecl' attribute only applies to functions and metho… function
96 @property int p __attribute__((section("__TEXT,foo"))); property
98 - (id) IMethod :(int) count, ... __attribute__((section("__TEXT,foo")));
100 + (void) CMethod : (id) Obj __attribute__((section("__TEXT,fee")));