Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:property

5         id __weak myString; // expected-error {{existing instance variable 'myString' for strong property 'myString' may not be __weak}}
7 id __weak myString2; // expected-error {{existing instance variable 'myString2' for strong property 'myString2' may not be __weak}}
9 id StrongIvar5; // expected-error {{existing instance variable 'StrongIvar5' for __weak property 'myString5' must be __weak}}
11 @property (strong) id myString; // expected-note {{property declared here}}
12 @property (strong) id myString1;
13 @property (retain) id myString2; // expected-note {{property declared here}}
15 @property (weak) id myString3;
16 @property (weak) id myString4;
17 @property __weak id myString5; // expected-note {{property declared here}}
21 @synthesize myString; // expected-note {{property synthesized here}}
23 @synthesize myString2 = myString2; // expected-note {{property synthesized here}}
27 @synthesize myString5 = StrongIvar5; // expected-note {{property synthesized here}}
34 id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for __weak property 'x' must be __weak}}
35 id __strong y; // expected-error {{existing instance variable 'y' for __weak property 'y' must be __weak}}
38 @property(weak) id x; // expected-note {{property declared here}}
39 @property(weak) id y; // expected-note {{property declared here}}
40 @property(weak) id z;
44 @synthesize x; // expected-note {{property synthesized here}}
45 @synthesize y; // expected-note {{property synthesized here}}
53 @property (strong) UndeclaredClass *test2; // expected-error {{unknown type name 'UndeclaredClass'}} expected-error {{must be of object type}}
61 @property (strong) id exception;