Lines Matching full:property
11 @property (getter = MyGetter, readonly, assign) IBOutlet NSView *myView; // expected-warning {{readonly IBOutlet property 'myView' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}}
13 IBInspectable @property (readonly) IBOutlet NSView *myView1; // expected-warning {{readonly IBOutlet property 'myView1' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}}
15 @property (getter = MyGetter, READONLY) IBOutlet NSView *myView2; // expected-warning {{readonly IBOutlet property 'myView2' when auto-synthesized may not work correctly with 'nib' loader}}
29 @property( readonly ) __attribute__((iboutlet)) UILabel *autoReadOnlyReadOnly; // expected-warning {{readonly IBOutlet property 'autoReadOnlyReadOnly' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}}
30 @property( readonly ) __attribute__((iboutlet)) UILabel *autoReadOnlyReadWrite;
31 @property( readonly ) __attribute__((iboutlet)) UILabel *synthReadOnlyReadWrite;
35 @property( readwrite ) __attribute__((iboutlet)) UILabel *autoReadOnlyReadWrite;
36 @property( readwrite ) __attribute__((iboutlet)) UILabel *synthReadOnlyReadWrite;
45 @property IBOutlet __weak WeakOutlet* WeakProp;