Lines Matching full:what
12 @property (retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing pr… property
16 //@synthesize howMany, what;
22 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is syn… property
26 //@synthesize howMany, what;
33 - (NSString*) what { method
42 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is synt… property
46 //@synthesize howMany, what;
53 // - (NSString*) what
65 @property (retain) NSString* what; property
69 //@synthesize howMany, what; // REM: Redundant anyway
78 - (NSString*) what { method
79 return what; // expected-error {{use of undeclared identifier 'what'}}
82 if (what != value) { // expected-error {{use of undeclared identifier 'what'}}
83 [what release]; // expected-error {{use of undeclared identifier 'what'}}
84 what = [value retain]; // expected-error {{use of undeclared identifier 'what'}}