Lines Matching refs:property
8 @property int NoAutoProp; // expected-note 2 {{property declared here}}
11 @implementation NoAuto // expected-warning {{property 'NoAutoProp' requires method 'NoAutoProp' to…
12 … // expected-warning {{property 'NoAutoProp' requires method 'setNoAutoProp:'}}
17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}}
20 @implementation Sub // expected-warning {{property 'SubProperty' requires method 'SubProperty' to b…
21 … // expected-warning {{property 'SubProperty' requires method 'setSubProperty:' to be defined}}
25 @property (copy) id DeepProperty;
26 @property (copy) id DeepSynthProperty;
27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}}
30 @implementation Deep // expected-warning {{property 'DeepMustSynthProperty' requires method 'setDee…
46 @property (readonly) char isFoo; // expected-note {{property declared here}}
47 @property (readonly) char isNotFree; // expected-note {{property declared here}}
66 …property (readwrite) char isFoo; // expected-warning {{auto property synthesis will not synthesize…
67 …property char Property1; // expected-warning {{auto property synthesis will not synthesize propert…
68 @property char Property2;
69 @property (readwrite) char isNotFree; // expected-warning {{auto property synthesis will not synthe…
76 @synthesize Property2 = Property1; // expected-note {{property synthesized here}}
93 @property (readonly) id prop; // expected-note {{property declared here}}
94 @property (readonly) id prop1; // expected-note {{property declared here}}
95 @property (readonly) id prop2; // expected-note {{property declared here}}
103 @property (readwrite) id prop2;
107 @property (assign,readwrite) id prop; // expected-warning {{auto property synthesis will not synthe…
108 @property (assign,readwrite) id prop1; // expected-warning {{auto property synthesis will not synth…
109 @property (assign,readwrite) id prop2; // expected-warning {{auto property synthesis will not synth…
121 @property (readonly) int six;
125 @property int six;
137 @property (assign, readonly) int failureCount;
143 @property (assign, readwrite) int failureCount;
163 @property(nonatomic, readonly) id hoho; // expected-note 2 {{property declared here}}
167 @property(nonatomic, readonly) id muahahaha; // expected-note 2 {{property declared here}}
175 …property synthesis will not synthesize property 'muahahaha' declared in protocol 'Fooing'}} expect…
181 …property synthesis will not synthesize property 'muahahaha' declared in protocol 'Fooing'}} expect…
204 @property (readonly) NSURL *fileURL;
205 @property (copy) NSURL *file;
206 @property (copy) NSURL *fileSys;
207 @property (copy) NSURL *fileLog;
208 @property (copy) NSURL *fileKerl;