Lines Matching full: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; // expected-note {{property declared here}} \
134 @property(readonly) int Set_ReadWriteInExt; // expected-note {{property declared here}} \
136 @property(readonly) int None_ReadWriteInExt;
137 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadWriteInExt;
138 @property(nonatomic,readonly) int Get_Nonatomic_ReadWriteInExt;
139 @property(nonatomic,readonly) int Set_Nonatomic_ReadWriteInExt;
140 @property(nonatomic,readonly) int None_Nonatomic_ReadWriteInExt;
144 @property int GetSet_LateSynthesize;
145 @property int Get_LateSynthesize; // expected-note {{property declared here}} \
147 @property int Set_LateSynthesize; // expected-note {{property declared here}} \
149 @property int None_LateSynthesize;
150 @property(nonatomic) int GetSet_Nonatomic_LateSynthesize;
151 @property(nonatomic) int Get_Nonatomic_LateSynthesize;
152 @property(nonatomic) int Set_Nonatomic_LateSynthesize;
153 @property(nonatomic) int None_Nonatomic_LateSynthesize;
155 @property(readonly) int GetSet_ReadOnly_LateSynthesize;
156 @property(readonly) int Get_ReadOnly_LateSynthesize;
157 @property(readonly) int Set_ReadOnly_LateSynthesize;
158 @property(readonly) int None_ReadOnly_LateSynthesize;
159 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadOnly_LateSynthesize;
160 @property(nonatomic,readonly) int Get_Nonatomic_ReadOnly_LateSynthesize;
161 @property(nonatomic,readonly) int Set_Nonatomic_ReadOnly_LateSynthesize;
162 @property(nonatomic,readonly) int None_Nonatomic_ReadOnly_LateSynthesize;
164 @property(readonly) int GetSet_ReadWriteInExt_LateSynthesize;
165 @property(readonly) int Get_ReadWriteInExt_LateSynthesize; // expected-note {{property declared here}} \
167 @property(readonly) int Set_ReadWriteInExt_LateSynthesize; // expected-note {{property declared here}} \
169 @property(readonly) int None_ReadWriteInExt_LateSynthesize;
170 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadWriteInExt_LateSynthesize;
171 @property(nonatomic,readonly) int Get_Nonatomic_ReadWriteInExt_LateSynthesize;
172 @property(nonatomic,readonly) int Set_Nonatomic_ReadWriteInExt_LateSynthesize;
173 @property(nonatomic,readonly) int None_Nonatomic_ReadWriteInExt_LateSynthesize;
177 @property int GetSet_NoSynthesize;
178 @property int Get_NoSynthesize;
179 @property int Set_NoSynthesize;
180 @property int None_NoSynthesize;
181 @property(nonatomic) int GetSet_Nonatomic_NoSynthesize;
182 @property(nonatomic) int Get_Nonatomic_NoSynthesize;
183 @property(nonatomic) int Set_Nonatomic_NoSynthesize;
184 @property(nonatomic) int None_Nonatomic_NoSynthesize;
186 @property(readonly) int GetSet_ReadOnly_NoSynthesize;
187 @property(readonly) int Get_ReadOnly_NoSynthesize;
188 @property(readonly) int Set_ReadOnly_NoSynthesize;
189 @property(readonly) int None_ReadOnly_NoSynthesize;
190 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadOnly_NoSynthesize;
191 @property(nonatomic,readonly) int Get_Nonatomic_ReadOnly_NoSynthesize;
192 @property(nonatomic,readonly) int Set_Nonatomic_ReadOnly_NoSynthesize;
193 @property(nonatomic,readonly) int None_Nonatomic_ReadOnly_NoSynthesize;
195 @property(readonly) int GetSet_ReadWriteInExt_NoSynthesize;
196 @property(readonly) int Get_ReadWriteInExt_NoSynthesize;
197 @property(readonly) int Set_ReadWriteInExt_NoSynthesize;
198 @property(readonly) int None_ReadWriteInExt_NoSynthesize;
199 @property(nonatomic,readonly) int GetSet_Nonatomic_ReadWriteInExt_NoSynthesize;
200 @property(nonatomic,readonly) int Get_Nonatomic_ReadWriteInExt_NoSynthesize;
201 @property(nonatomic,readonly) int Set_Nonatomic_ReadWriteInExt_NoSynthesize;
202 @property(nonatomic,readonly) int None_Nonatomic_ReadWriteInExt_NoSynthesize;
209 @property(readwrite) int GetSet_ReadWriteInExt;
210 @property(readwrite) int Get_ReadWriteInExt;
211 @property(readwrite) int Set_ReadWriteInExt;
212 @property(readwrite) int None_ReadWriteInExt;
213 @property(nonatomic,readwrite) int GetSet_Nonatomic_ReadWriteInExt;
214 @property(nonatomic,readwrite) int Get_Nonatomic_ReadWriteInExt;
215 @property(nonatomic,readwrite) int Set_Nonatomic_ReadWriteInExt;
216 @property(nonatomic,readwrite) int None_Nonatomic_ReadWriteInExt;
218 @property(readwrite) int GetSet_ReadWriteInExt_LateSynthesize;
219 @property(readwrite) int Get_ReadWriteInExt_LateSynthesize;
220 @property(readwrite) int Set_ReadWriteInExt_LateSynthesize;
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 a user defined getter}}
252 SET(Set) // expected-warning {{writable atomic property 'Set' cannot pair a synthesized getter with a user defined setter}}
269 GET(Get_ReadWriteInExt) // expected-warning {{writable atomic property 'Get_ReadWriteInExt' cannot pair a synthesized setter with a user defined getter}}
270 SET(Set_ReadWriteInExt) // expected-warning {{writable atomic property 'Set_ReadWriteInExt' cannot pair a synthesized getter with a user defined setter}}
279 GET(Get_LateSynthesize) // expected-warning {{writable atomic property 'Get_LateSynthesize' cannot pair a synthesized setter with a user defined getter}}
280 SET(Set_LateSynthesize) // expected-warning {{writable atomic property 'Set_LateSynthesize' cannot pair a synthesized getter with a user defined setter}}
297 GET(Get_ReadWriteInExt_LateSynthesize) // expected-warning {{writable atomic property 'Get_ReadWriteInExt_LateSynthesize' cannot pair a synthesized setter with a user defined getter}}
298 SET(Set_ReadWriteInExt_LateSynthesize) // expected-warning {{writable atomic property 'Set_ReadWriteInExt_LateSynthesize' cannot pair a synthesized getter with a user defined setter}}
349 // :warning: Atomic property 'x' cannot pair a synthesized setter/getter with a manually implemented setter/getter
362 // :warning: Atomic property 'x' cannot pair a synthesized setter/getter with a manually implemented setter/getter