Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:strong

6     id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __unsafe_unretained}}
7 id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be __weak}}
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 'x' may not be __unsafe_unretained}}
24 id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be __weak}}
40 id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __unsafe_unretained}}
41 id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be __weak}}
56 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
57 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
61 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
62 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
66 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
67 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
141 @property (strong) UILabel *label;
156 @property (strong) id strong_attr_prop;
157 @property (strong) __strong id realy_strong_attr_prop;