Lines Matching full:first

206   Style.ObjCPropertyAttributeOrder = {"FIRST",  in TEST_F()
247 verifyFormat("@property(FIRST, class) int p;", Style); in TEST_F()
248 verifyFormat("@property(FIRST, direct) int p;", Style); in TEST_F()
249 verifyFormat("@property(FIRST, atomic) int p;", Style); in TEST_F()
250 verifyFormat("@property(FIRST, nonatomic) int p;", Style); in TEST_F()
251 verifyFormat("@property(FIRST, assign) int p;", Style); in TEST_F()
252 verifyFormat("@property(FIRST, retain) int p;", Style); in TEST_F()
253 verifyFormat("@property(FIRST, strong) int p;", Style); in TEST_F()
254 verifyFormat("@property(FIRST, copy) int p;", Style); in TEST_F()
255 verifyFormat("@property(FIRST, weak) int p;", Style); in TEST_F()
256 verifyFormat("@property(FIRST, unsafe_unretained) int p;", Style); in TEST_F()
257 verifyFormat("@property(FIRST, readonly) int p;", Style); in TEST_F()
258 verifyFormat("@property(FIRST, readwrite) int p;", Style); in TEST_F()
259 verifyFormat("@property(FIRST, getter) int p;", Style); in TEST_F()
260 verifyFormat("@property(FIRST, setter) int p;", Style); in TEST_F()
261 verifyFormat("@property(FIRST, nullable) int p;", Style); in TEST_F()
262 verifyFormat("@property(FIRST, nonnull) int p;", Style); in TEST_F()
263 verifyFormat("@property(FIRST, null_resettable) int p;", Style); in TEST_F()
264 verifyFormat("@property(FIRST, null_unspecified) int p;", Style); in TEST_F()
266 verifyFormat("@property(FIRST, class, LAST) int p;", Style); in TEST_F()
267 verifyFormat("@property(FIRST, direct, LAST) int p;", Style); in TEST_F()
268 verifyFormat("@property(FIRST, atomic, LAST) int p;", Style); in TEST_F()
269 verifyFormat("@property(FIRST, nonatomic, LAST) int p;", Style); in TEST_F()
270 verifyFormat("@property(FIRST, assign, LAST) int p;", Style); in TEST_F()
271 verifyFormat("@property(FIRST, retain, LAST) int p;", Style); in TEST_F()
272 verifyFormat("@property(FIRST, strong, LAST) int p;", Style); in TEST_F()
273 verifyFormat("@property(FIRST, copy, LAST) int p;", Style); in TEST_F()
274 verifyFormat("@property(FIRST, weak, LAST) int p;", Style); in TEST_F()
275 verifyFormat("@property(FIRST, unsafe_unretained, LAST) int p;", Style); in TEST_F()
276 verifyFormat("@property(FIRST, readonly, LAST) int p;", Style); in TEST_F()
277 verifyFormat("@property(FIRST, readwrite, LAST) int p;", Style); in TEST_F()
278 verifyFormat("@property(FIRST, getter, LAST) int p;", Style); in TEST_F()
279 verifyFormat("@property(FIRST, setter, LAST) int p;", Style); in TEST_F()
280 verifyFormat("@property(FIRST, nullable, LAST) int p;", Style); in TEST_F()
281 verifyFormat("@property(FIRST, nonnull, LAST) int p;", Style); in TEST_F()
282 verifyFormat("@property(FIRST, null_resettable, LAST) int p;", Style); in TEST_F()
283 verifyFormat("@property(FIRST, null_unspecified, LAST) int p;", Style); in TEST_F()
285 // Reorder: put `FIRST` and/or `LAST` in the wrong spot. in TEST_F()
323 verifyFormat("@property(FIRST, class) int p;", in TEST_F()
324 "@property(class, FIRST) int p;", Style); in TEST_F()
325 verifyFormat("@property(FIRST, direct) int p;", in TEST_F()
326 "@property(direct, FIRST) int p;", Style); in TEST_F()
327 verifyFormat("@property(FIRST, atomic) int p;", in TEST_F()
328 "@property(atomic, FIRST) int p;", Style); in TEST_F()
329 verifyFormat("@property(FIRST, nonatomic) int p;", in TEST_F()
330 "@property(nonatomic, FIRST) int p;", Style); in TEST_F()
331 verifyFormat("@property(FIRST, assign) int p;", in TEST_F()
332 "@property(assign, FIRST) int p;", Style); in TEST_F()
333 verifyFormat("@property(FIRST, retain) int p;", in TEST_F()
334 "@property(retain, FIRST) int p;", Style); in TEST_F()
335 verifyFormat("@property(FIRST, strong) int p;", in TEST_F()
336 "@property(strong, FIRST) int p;", Style); in TEST_F()
337 verifyFormat("@property(FIRST, copy) int p;", "@property(copy, FIRST) int p;", in TEST_F()
339 verifyFormat("@property(FIRST, weak) int p;", "@property(weak, FIRST) int p;", in TEST_F()
341 verifyFormat("@property(FIRST, unsafe_unretained) int p;", in TEST_F()
342 "@property(unsafe_unretained, FIRST) int p;", Style); in TEST_F()
343 verifyFormat("@property(FIRST, readonly) int p;", in TEST_F()
344 "@property(readonly, FIRST) int p;", Style); in TEST_F()
345 verifyFormat("@property(FIRST, readwrite) int p;", in TEST_F()
346 "@property(readwrite, FIRST) int p;", Style); in TEST_F()
347 verifyFormat("@property(FIRST, getter) int p;", in TEST_F()
348 "@property(getter, FIRST) int p;", Style); in TEST_F()
349 verifyFormat("@property(FIRST, setter) int p;", in TEST_F()
350 "@property(setter, FIRST) int p;", Style); in TEST_F()
351 verifyFormat("@property(FIRST, nullable) int p;", in TEST_F()
352 "@property(nullable, FIRST) int p;", Style); in TEST_F()
353 verifyFormat("@property(FIRST, nonnull) int p;", in TEST_F()
354 "@property(nonnull, FIRST) int p;", Style); in TEST_F()
355 verifyFormat("@property(FIRST, null_resettable) int p;", in TEST_F()
356 "@property(null_resettable, FIRST) int p;", Style); in TEST_F()
357 verifyFormat("@property(FIRST, null_unspecified) int p;", in TEST_F()
358 "@property(null_unspecified, FIRST) int p;", Style); in TEST_F()
360 verifyFormat("@property(FIRST, class, LAST) int p;", in TEST_F()
361 "@property(LAST, class, FIRST) int p;", Style); in TEST_F()
362 verifyFormat("@property(FIRST, direct, LAST) int p;", in TEST_F()
363 "@property(LAST, direct, FIRST) int p;", Style); in TEST_F()
364 verifyFormat("@property(FIRST, atomic, LAST) int p;", in TEST_F()
365 "@property(LAST, atomic, FIRST) int p;", Style); in TEST_F()
366 verifyFormat("@property(FIRST, nonatomic, LAST) int p;", in TEST_F()
367 "@property(LAST, nonatomic, FIRST) int p;", Style); in TEST_F()
368 verifyFormat("@property(FIRST, assign, LAST) int p;", in TEST_F()
369 "@property(LAST, assign, FIRST) int p;", Style); in TEST_F()
370 verifyFormat("@property(FIRST, retain, LAST) int p;", in TEST_F()
371 "@property(LAST, retain, FIRST) int p;", Style); in TEST_F()
372 verifyFormat("@property(FIRST, strong, LAST) int p;", in TEST_F()
373 "@property(LAST, strong, FIRST) int p;", Style); in TEST_F()
374 verifyFormat("@property(FIRST, copy, LAST) int p;", in TEST_F()
375 "@property(LAST, copy, FIRST) int p;", Style); in TEST_F()
376 verifyFormat("@property(FIRST, weak, LAST) int p;", in TEST_F()
377 "@property(LAST, weak, FIRST) int p;", Style); in TEST_F()
378 verifyFormat("@property(FIRST, unsafe_unretained, LAST) int p;", in TEST_F()
379 "@property(LAST, unsafe_unretained, FIRST) int p;", Style); in TEST_F()
380 verifyFormat("@property(FIRST, readonly, LAST) int p;", in TEST_F()
381 "@property(LAST, readonly, FIRST) int p;", Style); in TEST_F()
382 verifyFormat("@property(FIRST, readwrite, LAST) int p;", in TEST_F()
383 "@property(LAST, readwrite, FIRST) int p;", Style); in TEST_F()
384 verifyFormat("@property(FIRST, getter, LAST) int p;", in TEST_F()
385 "@property(LAST, getter, FIRST) int p;", Style); in TEST_F()
386 verifyFormat("@property(FIRST, setter, LAST) int p;", in TEST_F()
387 "@property(LAST, setter, FIRST) int p;", Style); in TEST_F()
388 verifyFormat("@property(FIRST, nullable, LAST) int p;", in TEST_F()
389 "@property(LAST, nullable, FIRST) int p;", Style); in TEST_F()
390 verifyFormat("@property(FIRST, nonnull, LAST) int p;", in TEST_F()
391 "@property(LAST, nonnull, FIRST) int p;", Style); in TEST_F()
392 verifyFormat("@property(FIRST, null_resettable, LAST) int p;", in TEST_F()
393 "@property(LAST, null_resettable, FIRST) int p;", Style); in TEST_F()
394 verifyFormat("@property(FIRST, null_unspecified, LAST) int p;", in TEST_F()
395 "@property(LAST, null_unspecified, FIRST) int p;", Style); in TEST_F()