• Home
  • Raw
  • Download

Lines Matching refs:property

5   1. the property is atomic
6 2. the current @implementation contains an @synthesize for the property
8 4. the property is read-write
11 warning: Atomic property 'x' has a synthesized setter and a
13 warning: Atomic property 'x' has a synthesized getter and a
109 @property int GetSet;
110 @property int Get; // expected-note {{property declared here}} \
112 @property int Set; // expected-note {{property declared here}} \
114 @property int None;
115 @property(nonatomic) int GetSet_Nonatomic;
116 @property(nonatomic) int Get_Nonatomic;
117 @property(nonatomic) int Set_Nonatomic;
118 @property(nonatomic) int None_Nonatomic;
121 @property(readonly) int GetSet_ReadOnly;
122 @property(readonly) int Get_ReadOnly;
123 @property(readonly) int Set_ReadOnly;
124 @property(readonly) int None_ReadOnly;
125 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadOnly;
126 @property(nonatomic,readonly) int Get_Nonatomic_ReadOnly;
127 @property(nonatomic,readonly) int Set_Nonatomic_ReadOnly;
128 @property(nonatomic,readonly) int None_Nonatomic_ReadOnly;
131 @property(readonly) int GetSet_ReadWriteInExt;
132 @property(readonly) int Get_ReadWriteInExt;
133 @property(readonly) int Set_ReadWriteInExt;
134 @property(readonly) int None_ReadWriteInExt;
135 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadWriteInExt;
136 @property(nonatomic,readonly) int Get_Nonatomic_ReadWriteInExt;
137 @property(nonatomic,readonly) int Set_Nonatomic_ReadWriteInExt;
138 @property(nonatomic,readonly) int None_Nonatomic_ReadWriteInExt;
142 @property int GetSet_LateSynthesize;
143 @property int Get_LateSynthesize; // expected-note {{property declared here}} \
145 @property int Set_LateSynthesize; // expected-note {{property declared here}} \
147 @property int None_LateSynthesize;
148 @property(nonatomic) int GetSet_Nonatomic_LateSynthesize;
149 @property(nonatomic) int Get_Nonatomic_LateSynthesize;
150 @property(nonatomic) int Set_Nonatomic_LateSynthesize;
151 @property(nonatomic) int None_Nonatomic_LateSynthesize;
153 @property(readonly) int GetSet_ReadOnly_LateSynthesize;
154 @property(readonly) int Get_ReadOnly_LateSynthesize;
155 @property(readonly) int Set_ReadOnly_LateSynthesize;
156 @property(readonly) int None_ReadOnly_LateSynthesize;
157 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadOnly_LateSynthesize;
158 @property(nonatomic,readonly) int Get_Nonatomic_ReadOnly_LateSynthesize;
159 @property(nonatomic,readonly) int Set_Nonatomic_ReadOnly_LateSynthesize;
160 @property(nonatomic,readonly) int None_Nonatomic_ReadOnly_LateSynthesize;
162 @property(readonly) int GetSet_ReadWriteInExt_LateSynthesize;
163 @property(readonly) int Get_ReadWriteInExt_LateSynthesize;
164 @property(readonly) int Set_ReadWriteInExt_LateSynthesize;
165 @property(readonly) int None_ReadWriteInExt_LateSynthesize;
166 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadWriteInExt_LateSynthesize;
167 @property(nonatomic,readonly) int Get_Nonatomic_ReadWriteInExt_LateSynthesize;
168 @property(nonatomic,readonly) int Set_Nonatomic_ReadWriteInExt_LateSynthesize;
169 @property(nonatomic,readonly) int None_Nonatomic_ReadWriteInExt_LateSynthesize;
173 @property int GetSet_NoSynthesize;
174 @property int Get_NoSynthesize;
175 @property int Set_NoSynthesize;
176 @property int None_NoSynthesize;
177 @property(nonatomic) int GetSet_Nonatomic_NoSynthesize;
178 @property(nonatomic) int Get_Nonatomic_NoSynthesize;
179 @property(nonatomic) int Set_Nonatomic_NoSynthesize;
180 @property(nonatomic) int None_Nonatomic_NoSynthesize;
182 @property(readonly) int GetSet_ReadOnly_NoSynthesize;
183 @property(readonly) int Get_ReadOnly_NoSynthesize;
184 @property(readonly) int Set_ReadOnly_NoSynthesize;
185 @property(readonly) int None_ReadOnly_NoSynthesize;
186 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadOnly_NoSynthesize;
187 @property(nonatomic,readonly) int Get_Nonatomic_ReadOnly_NoSynthesize;
188 @property(nonatomic,readonly) int Set_Nonatomic_ReadOnly_NoSynthesize;
189 @property(nonatomic,readonly) int None_Nonatomic_ReadOnly_NoSynthesize;
191 @property(readonly) int GetSet_ReadWriteInExt_NoSynthesize;
192 @property(readonly) int Get_ReadWriteInExt_NoSynthesize;
193 @property(readonly) int Set_ReadWriteInExt_NoSynthesize;
194 @property(readonly) int None_ReadWriteInExt_NoSynthesize;
195 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadWriteInExt_NoSynthesize;
196 @property(nonatomic,readonly) int Get_Nonatomic_ReadWriteInExt_NoSynthesize;
197 @property(nonatomic,readonly) int Set_Nonatomic_ReadWriteInExt_NoSynthesize;
198 @property(nonatomic,readonly) int None_Nonatomic_ReadWriteInExt_NoSynthesize;
205 @property(readwrite) int GetSet_ReadWriteInExt;
206 @property(readwrite) int Get_ReadWriteInExt; // expected-note {{property declared here}} \
208 @property(readwrite) int Set_ReadWriteInExt; // expected-note {{property declared here}} \
210 @property(readwrite) int None_ReadWriteInExt;
211 @property(nonatomic,readwrite) int GetSet_Nonatomic_ReadWriteInExt;
212 @property(nonatomic,readwrite) int Get_Nonatomic_ReadWriteInExt;
213 @property(nonatomic,readwrite) int Set_Nonatomic_ReadWriteInExt;
214 @property(nonatomic,readwrite) int None_Nonatomic_ReadWriteInExt;
216 @property(readwrite) int GetSet_ReadWriteInExt_LateSynthesize;
217 @property(readwrite) int Get_ReadWriteInExt_LateSynthesize; // expected-note {{property declared h…
219 @property(readwrite) int Set_ReadWriteInExt_LateSynthesize; // expected-note {{property declared he…
221 @property(readwrite) int None_ReadWriteInExt_LateSynthesize;
222 @property(nonatomic,readwrite) int GetSet_Nonatomic_ReadWriteInExt_LateSynthesize;
223 @property(nonatomic,readwrite) int Get_Nonatomic_ReadWriteInExt_LateSynthesize;
224 @property(nonatomic,readwrite) int Set_Nonatomic_ReadWriteInExt_LateSynthesize;
225 @property(nonatomic,readwrite) int None_Nonatomic_ReadWriteInExt_LateSynthesize;
227 @property(readwrite) int GetSet_ReadWriteInExt_NoSynthesize;
228 @property(readwrite) int Get_ReadWriteInExt_NoSynthesize;
229 @property(readwrite) int Set_ReadWriteInExt_NoSynthesize;
230 @property(readwrite) int None_ReadWriteInExt_NoSynthesize;
231 @property(nonatomic,readwrite) int GetSet_Nonatomic_ReadWriteInExt_NoSynthesize;
232 @property(nonatomic,readwrite) int Get_Nonatomic_ReadWriteInExt_NoSynthesize;
233 @property(nonatomic,readwrite) int Set_Nonatomic_ReadWriteInExt_NoSynthesize;
234 @property(nonatomic,readwrite) int None_Nonatomic_ReadWriteInExt_NoSynthesize;
251 GET(Get) // expected-warning {{writable atomic property 'Get' cannot pair a synthesized setter with…
252 SET(Set) // expected-warning {{writable atomic property 'Set' cannot pair a synthesized getter with…
269 GET(Get_ReadWriteInExt) // expected-warning {{writable atomic property 'Get_ReadWriteInExt' cannot …
270 SET(Set_ReadWriteInExt) // expected-warning {{writable atomic property 'Set_ReadWriteInExt' cannot …
279 GET(Get_LateSynthesize) // expected-warning {{writable atomic property 'Get_LateSynthesize' cannot …
280 SET(Set_LateSynthesize) // expected-warning {{writable atomic property 'Set_LateSynthesize' cannot …
297 GET(Get_ReadWriteInExt_LateSynthesize) // expected-warning {{writable atomic property 'Get_ReadWrit…
298 SET(Set_ReadWriteInExt_LateSynthesize) // expected-warning {{writable atomic property 'Set_ReadWrit…
349 // :warning: Atomic property 'x' cannot pair a synthesized setter/getter with a manually implemente…
362 // :warning: Atomic property 'x' cannot pair a synthesized setter/getter with a manually implemente…