Lines Matching refs:property
6 …tained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __…
7 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
10 @property(strong) id x; // expected-note {{property declared here}}
11 @property(strong) id y; // expected-note {{property declared here}}
12 @property(strong) id z;
16 @synthesize x; // expected-note {{property synthesized here}}
17 @synthesize y; // expected-note {{property synthesized here}}
23 …tained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __…
24 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
27 @property(retain) id x; // expected-note {{property declared here}}
28 @property(retain) id y; // expected-note {{property declared here}}
29 @property(retain) id z;
33 @synthesize x; // expected-note {{property synthesized here}}
34 @synthesize y; // expected-note {{property synthesized here}}
40 …tained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __…
41 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
44 @property(copy) id x; // expected-note {{property declared here}}
45 @property(copy) id y; // expected-note {{property declared here}}
46 @property(copy) id z;
50 @synthesize x; // expected-note {{property synthesized here}}
51 @synthesize y; // expected-note {{property synthesized here}}
56 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
57 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
61 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
62 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
66 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be d…
67 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be decla…
73 …id y; // expected-error {{existing instance variable 'y' for property 'y' with assign attribute m…
75 @property(assign) id __unsafe_unretained x;
76 @property(assign) id y; // expected-note {{property declared here}}
77 @property(assign) id z;
82 @synthesize y; // expected-note {{property synthesized here}}
88 …id y; // expected-error {{existing instance variable 'y' for property 'y' with unsafe_unretained a…
90 @property(unsafe_unretained) id __unsafe_unretained x;
91 @property(unsafe_unretained) id y; // expected-note {{property declared here}}
92 @property(unsafe_unretained) id z;
97 @synthesize y; // expected-note {{property synthesized here}}
105 @property char isAutosaving;
120 @property (copy) Class controllerClass;
121 @property (copy) id controllerId;
134 @property(nonatomic,copy) UIColor *backgroundColor;
141 @property (strong) UILabel *label;
154 @property id prop;
155 @property __strong id strong_prop;
156 @property (strong) id strong_attr_prop;
157 @property (strong) __strong id realy_strong_attr_prop;
174 @property (readonly) const void * innerPointer __attribute__((objc_returns_inner_pointer)); // expe…
178 …id _prop; // expected-error {{existing instance variable '_prop' for property 'prop' with assign …
180 @property (nonatomic, assign) id prop; // expected-note {{property declared here}}
194 @property (nonatomic, assign) BOOL retain; // expected-error {{ARC forbids synthesis of 'retain'}}