Lines Matching refs:Stop
93 obj = [OverridesALot alloc]; // Stop here to start stepping
94 [obj release]; // Stop Location 2
96 obj = [OverridesALot allocWithZone: NULL]; // Stop Location 3
97 [obj release]; // Stop Location 4
99 obj = [OverridesALot new]; // Stop Location 5
100 [obj release]; // Stop Location 6
102 obj = [[OverridesALot alloc] init]; // Stop Location 7
103 [obj self]; // Stop Location 8
104 [obj isKindOfClass: [OverridesALot class]]; // Stop Location 9
105 [obj respondsToSelector: @selector(hello)]; // Stop Location 10
106 [obj retain]; // Stop Location 11
107 [obj autorelease]; // Stop Location 12
108 [obj boring]; // Stop Location 13
109 [obj release]; // Stop Location 14
114 obj = [[OverridesInit alloc] init]; // Stop Location 15
116 return 0; // Stop Location 15