Lines Matching refs:also
40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __w…
42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w…
48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be d…
53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea…
54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be decla…
59 @property(assign) __weak id y; // expected-error {{unsafe_unretained property 'y' may not also be d…
60 …eleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autor…
65 …) __weak id y; // expected-error {{unsafe_unretained property 'y' may not also be declared __weak}}
66 …eleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autor…
133 @property (assign, nonatomic, readonly) id prop; // expected-note {{it could also be property witho…
146 @property (retain, readonly) id prop; // expected-note {{it could also be property with attribute '…
159 @property (copy, atomic, readonly) id prop; // expected-note {{it could also be property with attri…
172 @property (copy, getter=x, readonly) id prop; // expected-note {{it could also be property with get…
188 @property (copy, readwrite) id prop; // expected-note {{it could also be property with setter 'setP…
201 @property (assign, atomic, readonly) id prop; // expected-note {{it could also be property of type …
204 @property (copy, readonly) id prop; // expected-note {{it could also be property with attribute 'co…
214 @property (assign, nonatomic, readonly) int prop; // expected-note {{it could also be property of t…
273 // expected-note@+1 {{it could also be property without attribute 'retain (or strong)' declared her…