Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:howmany

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