Lines Matching refs:stopIndex
1860 ANTLR3_MARKER stopIndex; in getRuleMemoization() local
1893 stopIndex = 0; in getRuleMemoization()
1898 stopIndex = (ANTLR3_MARKER)(entry->data.intVal); in getRuleMemoization()
1901 if (stopIndex == 0) in getRuleMemoization()
1906 return stopIndex; in getRuleMemoization()
1920 ANTLR3_MARKER stopIndex; in alreadyParsedRule() local
1964 stopIndex = recognizer->getRuleMemoization(recognizer, ruleIndex, is->index(is)); in alreadyParsedRule()
1966 if (stopIndex == MEMO_RULE_UNKNOWN) in alreadyParsedRule()
1971 if (stopIndex == MEMO_RULE_FAILED) in alreadyParsedRule()
1977 is->seek(is, stopIndex+1); in alreadyParsedRule()
1995 ANTLR3_MARKER stopIndex; in memoize() local
2035 stopIndex = recognizer->state->failed == ANTLR3_TRUE ? MEMO_RULE_FAILED : is->index(is) - 1; in memoize()
2047 ruleList->add(ruleList, ruleParseStart, ANTLR3_HASH_TYPE_INT, stopIndex, NULL, NULL); in memoize()