Lines Matching refs:howMany
11 @property int howMany; // expected-warning {{auto property synthesis is synthesizing property not e… property
16 //@synthesize howMany, what;
21 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing … property
26 //@synthesize howMany, what;
28 - (int) howMany { method
41 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing pr… property
46 //@synthesize howMany, what;
48 // - (int) howMany
64 @property int howMany; property
69 //@synthesize howMany, what; // REM: Redundant anyway
71 - (int) howMany { method
72 return howMany; // expected-error {{use of undeclared identifier 'howMany'}}
75 howMany = value; // expected-error {{use of undeclared identifier 'howMany'}}