Home
last modified time | relevance | path

Searched refs:stopTokenIndex (Results 1 – 8 of 8) sorted by relevance

/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js891 var stopTokenIndex = this.state.failed ?
900 this.state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex;
/external/antlr/runtime/Python/antlr3/
Drecognizers.py960 stopTokenIndex = input.index() - 1
962 stopTokenIndex = self.MEMO_RULE_FAILED
965 self._state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py935 stopTokenIndex = input.index() - 1
937 stopTokenIndex = self.MEMO_RULE_FAILED
940 self._state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java837 int stopTokenIndex = state.failed?MEMO_RULE_FAILED:input.index()-1; in memoize() local
845 state.ruleMemo[ruleIndex].put(ruleStartIndex, stopTokenIndex); in memoize()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBaseRecognizer.cs898 int stopTokenIndex = state.failed ? MemoRuleFailed : input.Index - 1; in Memoize()
908 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex; in Memoize()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DBaseRecognizer.cs1016 int stopTokenIndex = state.failed ? MemoRuleFailed : input.Index - 1; in Memoize()
1029 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex; in Memoize()
/external/antlr/runtime/ObjC/Framework/
DBaseRecognizer.m1052 NSInteger stopTokenIndex;
1055 stopTokenIndex = (state.failed ? ANTLR_MEMO_RULE_FAILED : (anInput.index-1));
1065 … [aRuleStack putHashRuleAtRuleIndex:ruleIndex StartIndex:ruleStartIndex StopIndex:stopTokenIndex];
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as764 var stopTokenIndex:int = state.failed ? MEMO_RULE_FAILED : input.index - 1;
773 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex;