• Home
  • Raw
  • Download

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;
66property (readwrite) char isFoo; // expected-warning {{auto property synthesis will not synthesize…
67property char Property1; // expected-warning {{auto property synthesis will not synthesize propert…
68 @property char Property2;
69 @property (readwrite) char isNotFree;
76 @synthesize Property2 = Property1; // expected-note {{property synthesized here}}
93 @property (readonly) id prop;
94 @property (readonly) id prop1;
95 @property (readonly) id prop2;
103 @property (readwrite) id prop2;
107 @property (assign,readwrite) id prop;
108 @property (assign,readwrite) id prop1;
109 @property (assign,readwrite) id prop2;
121 @property (readonly) int six;
125 @property int six;
137 @property (assign, readonly) int failureCount;
143 @property (assign, readwrite) int failureCount;