Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js891 var stopTokenIndex = this.state.failed ?
900 this.state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py960 stopTokenIndex = input.index() - 1
962 stopTokenIndex = self.MEMO_RULE_FAILED
965 self._state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java837 int stopTokenIndex = state.failed?MEMO_RULE_FAILED:input.index()-1; in memoize() local
846 new Integer(ruleStartIndex), new Integer(stopTokenIndex) in memoize()
/external/antlr/antlr-3.4/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/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DBaseRecognizer.cs1014 int stopTokenIndex = state.failed ? MemoRuleFailed : input.Index - 1; in Memoize()
1027 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex; in Memoize()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseRecognizer.m1049 NSInteger stopTokenIndex;
1052 stopTokenIndex = (state.failed ? ANTLR_MEMO_RULE_FAILED : (anInput.index-1));
1062 … [aRuleStack putHashRuleAtRuleIndex:ruleIndex StartIndex:ruleStartIndex StopIndex:stopTokenIndex];
/external/antlr/antlr-3.4/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;