Lines Matching refs:property
5 …g; // expected-error {{existing instance variable 'myString' for strong property 'myString' may no…
7 …; // expected-error {{existing instance variable 'myString2' for strong property 'myString2' may n…
9 …// expected-error {{existing instance variable 'StrongIvar5' for __weak property 'myString5' must …
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 …tained x; // expected-error {{existing instance variable 'x' for __weak property 'x' must be __wea…
35 …id __strong y; // expected-error {{existing instance variable 'y' for __weak property 'y' must be…
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'…
61 @property (strong) id exception;