Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:property

7 @property (readwrite, copy) id d1;
8 @property (readwrite, copy) id d2;
12 @property (readonly) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of property inherited from 'I'}} expected-warning {{'copy' attribute on property 'd1' does not match the property inherited from 'I'}}
13 @property (readwrite, copy) I* d2;
20 @property (nonatomic, readonly) BOOL allowReminders;
21 @property (atomic, readonly) BOOL allowNonatomicProperty; // expected-note {{property declared here}}
31 @property (nonatomic, assign) BOOL allowReminders;
32 @property (nonatomic, assign) BOOL allowNonatomicProperty; // expected-warning {{'atomic' attribute on property 'allowNonatomicProperty' does not match the property inherited from 'EKProtocolCalendar'}}