Lines Matching refs:currentChildIndex
45 @synthesize currentChildIndex;
92 currentChildIndex = -1;
205 [state setCurrentChildIndex:currentChildIndex];
231 currentChildIndex = [state currentChildIndex];
327 if (currentChildIndex == -1) {
330 if (currentChildIndex < (NSInteger)[currentNode getChildCount]) {
331 return [self visitChild:currentChildIndex];
335 return [self visitChild:currentChildIndex];
345 currentChildIndex = 0;
347 node = [self visitChild:currentChildIndex];
367 currentChildIndex = 0;
376 while (currentNode != nil && currentChildIndex >= (NSInteger)[currentNode getChildCount])
380 currentChildIndex = [(NSNumber *)[indexStack lastObject] intValue];
382 currentChildIndex++; // move to next child
383 if (currentChildIndex >= (NSInteger)[currentNode getChildCount]) {