Lines Matching refs:stopIndex
215 - (AMutableArray *)getFrom:(NSInteger)startIndex To:(NSInteger)stopIndex
217 if ( startIndex < 0 || stopIndex < 0 )
224 if ( stopIndex >= [tokens count] )
225 stopIndex = [tokens count]-1;
226 for (NSInteger i = startIndex; i <= stopIndex; i++) {
289 - (AMutableArray *)getTokensFrom:(NSInteger) startIndex To:(NSInteger) stopIndex
291 return [self getTokensFrom:startIndex To:stopIndex With:(ANTLRBitSet *)nil];
298 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex With:(ANTLRBitSet *)…
304 if ( stopIndex >= [tokens count] )
305 stopIndex = [tokens count]-1;
308 if ( startIndex > stopIndex )
313 for (NSInteger i = startIndex; i <= stopIndex; i++) {
325 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)…
327 return [self getTokensFrom:startIndex To:stopIndex With:[ANTLRBitSet of:ttype]];
330 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithList:(AMutableAr…
332 return [self getTokensFrom:startIndex To:stopIndex With:[ANTLRBitSet newBitSetWithArray:types]];