Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:what

12 @property (retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
16 //@synthesize howMany, what;
22 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
26 //@synthesize howMany, what;
33 - (NSString*) what {
42 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
46 //@synthesize howMany, what;
53 // - (NSString*) what
65 @property (retain) NSString* what;
69 //@synthesize howMany, what; // REM: Redundant anyway
78 - (NSString*) what {
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'}}