Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:property

6 @property(strong) id name, rank, serialNumber;
17 // default synthesis allows direct access to property ivars.
30 @property(strong, nonatomic) id object;
46 @property (readwrite, assign) id uid; // expected-note {{property declared here}}
50 @implementation Test3 // expected-warning {{autosynthesized property 'uid' will use synthesized instance variable '_uid', not existing instance variable 'uid'}}
55 _uid = 0; // Use of the property instance variable
62 @property (readwrite, assign) id var;
66 // default synthesize property named 'var'
77 @property (readwrite, assign) id var;
80 // default synthesis of property 'var'
92 @property (readwrite, assign) id var;
107 @property (readwrite, assign) id object;
124 @property(copy) id y; // expected-note {{property declared here}}
128 @implementation Test8 @end // expected-warning {{autosynthesized property 'y' will use instance variable '_y', not existing instance variable 'y'}}