Lines Matching refs:strong
6 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
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;
23 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
24 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
40 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
41 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
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…
141 @property (strong) UILabel *label;
156 @property (strong) id strong_attr_prop;
157 @property (strong) __strong id really_strong_attr_prop;