Lines Matching full:property
10 @property (readwrite, retain) id selectedObjects; // expected-note {{property declared here}}
11 @property (readwrite, retain) id d_selectedObjects; // expected-note {{property declared here}}
15 @synthesize selectedObjects = _selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemented in class implementation}}
16 @dynamic d_selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemented in class implementation}}
27 @property (readonly) int count;
65 @property (readonly) int count;
79 @property int d1;
83 @property int d1;
98 @property (readonly) int p; // no warning for this property - a getter is declared in another category
99 @property (readonly) int p1; // expected-note {{property declared here}}
100 @property (readonly) int p2; // no warning for this property - a getter is declared in this category
104 @implementation C (Category) // expected-warning {{property 'p1' requires method 'p1' to be defined - use @dynamic or provide a method implementation in this category}}
109 @property (readonly) float anotherFloat; // expected-note {{property declared here}}
110 @property (readonly) float Float; // no warning for this property - a getter is declared in this protocol
121 @implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method 'anotherFloat' to be defined - use @dynamic or provide a method implementation in this category}}