Home | History | Annotate | Download | only in Framework

Lines Matching full:nodes

49         nodes = [theStream getNodes];
56 return idx < [nodes count];
63 if (current < [nodes count]) {
65 return [nodes getEof];
70 @throw [ANTLRRuntimeException newException:@"cannot remove nodes from stream"];
81 @synthesize nodes;
116 nodes = [[AMutableArray arrayWithCapacity:DEFAULT_INITIAL_BUFFER_SIZE] retain];
133 nodes = [[AMutableArray arrayWithCapacity:DEFAULT_INITIAL_BUFFER_SIZE] retain];
150 nodes = [[AMutableArray arrayWithCapacity:DEFAULT_INITIAL_BUFFER_SIZE] retain];
170 nodes = [[AMutableArray arrayWithCapacity:bufferSize] retain];
184 if ( nodes ) [nodes release];
203 if ( nodes )
204 copy.nodes = [nodes copyWithZone:aZone];
225 index = 0; // buffer of nodes intialized now
232 [nodes addObject:aTree];
252 for (NSUInteger i = 0; i < [nodes count]; i++) {
253 id t = [nodes objectAtIndex:i];
281 [nodes addObject:navNode];
289 return [nodes objectAtIndex:i];
303 if ((index + k - 1) >= [nodes count]) {
306 return [nodes objectAtIndex:(index + k - 1)];
322 return [nodes objectAtIndex:(index - k)];
440 return [nodes count];
451 e = [[ANTLRStreamEnumerator alloc] initWithNodes:nodes andEOF:eof];
470 for (NSUInteger i= 0; i < [nodes count]; i++) {
483 for (NSUInteger i = aStart; i < [nodes count] && i <= aStop; i++) {
512 // walk nodes looking for aStart
515 for (; i < [nodes count]; i++) {
516 aTree = [nodes objectAtIndex:i];
522 aTree = [nodes objectAtIndex:i]; // why?
530 aTree = [nodes objectAtIndex:i];
543 return nodes;