Lines Matching refs:howMany
8 @property int howMany; property
14 @synthesize howMany, what;
20 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one… property
26 @synthesize howMany, what;
29 - (int) howMany { method in objc_default_synthesize_properties
30 return self.howMany;
42 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one… property
48 @synthesize howMany, what;
51 // - (int) howMany
53 self.howMany = value;
65 @property int howMany; property
71 @synthesize howMany, what; // REM: Redundant anyway
74 - (int) howMany { method in objc_default_synthesize_properties
75 return self.howMany;
78 self.howMany = value;