Lines Matching full:property
8 @property int howMany;
9 @property (retain) NSString* what;
20 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one of the pair
21 @property (nonatomic, retain) NSString* what;
42 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one of the pair
43 @property (nonatomic, retain) NSString* what;
65 @property int howMany;
66 @property (retain) NSString* what;
91 @property (readonly) id myString;
108 @property int p; // expected-note 2 {{property declared here}}
110 @implementation C (Category) // expected-warning {{property 'p' requires method 'p' to be defined}} \
111 // expected-warning {{property 'p' requires method 'setP:' to be defined}}
114 // Don't complain if a property is already @synthesized by usr.
118 @property int PROP;
130 @property (nonatomic, strong) NSString *requiredString; // expected-note {{property declared here}}
133 @property (nonatomic, strong) NSString *optionalString;
139 @implementation MyClass // expected-warning {{auto property synthesis will not synthesize property 'requiredString' declared in protocol 'MyProtocol'}}
148 @property (nonatomic, assign) id <TMSourceManagerDelegate> delegate;
152 @property (nonatomic, assign) id <TMSourceManagerDelegate> delegate;
166 @property (assign) id prot;