Home
last modified time | relevance | path

Searched refs:ruleStartIndex (Results 1 – 25 of 34) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js842 getRuleMemoization: function(ruleIndex, ruleStartIndex) { argument
847 this.state.ruleMemo[ruleIndex][ruleStartIndex];
889 ruleStartIndex) argument
900 this.state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java793 public int getRuleMemoization(int ruleIndex, int ruleStartIndex) { in getRuleMemoization() argument
798 (Integer)state.ruleMemo[ruleIndex].get(new Integer(ruleStartIndex)); in getRuleMemoization()
835 int ruleStartIndex) in memoize() argument
846 new Integer(ruleStartIndex), new Integer(stopTokenIndex) in memoize()
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRBaseRecognizer.h168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
172 StartIndex:(NSInteger)ruleStartIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRBaseRecognizer.h168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
172 StartIndex:(NSInteger)ruleStartIndex;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseRecognizer.h160 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
164 StartIndex:(NSInteger)ruleStartIndex;
DANTLRBaseRecognizer.m999 - (NSInteger)getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex
1007 stopIndexI = [aHashRule getRuleMemoStopIndex:ruleStartIndex];
1046 StartIndex:(NSInteger)ruleStartIndex
1062 … [aRuleStack putHashRuleAtRuleIndex:ruleIndex StartIndex:ruleStartIndex StopIndex:stopTokenIndex];
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRBaseRecognizer.h168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
172 StartIndex:(NSInteger)ruleStartIndex;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBaseRecognizer.cs850 public virtual int GetRuleMemoization(int ruleIndex, int ruleStartIndex) { in GetRuleMemoization() argument
856 if (!state.ruleMemo[ruleIndex].TryGetValue(ruleStartIndex, out stopIndex)) in GetRuleMemoization()
897 int ruleStartIndex) { in Memoize() argument
908 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex; in Memoize()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DBaseRecognizer.cs958 public virtual int GetRuleMemoization( int ruleIndex, int ruleStartIndex ) in GetRuleMemoization() argument
966 if ( !state.ruleMemo[ruleIndex].TryGetValue( ruleStartIndex, out stopIndex ) ) in GetRuleMemoization()
1012 int ruleStartIndex ) in Memoize() argument
1027 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex; in Memoize()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DDbg.stg84 …moize:(id<ANTLRIntStream>)input RuleIndex:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex
86 …[((Profiler)dbg) memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex [<grammar.composite.r…
87 [super memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex];
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py911 def getRuleMemoization(self, ruleIndex, ruleStartIndex): argument
924 ruleStartIndex, self.MEMO_RULE_UNKNOWN
953 def memoize(self, input, ruleIndex, ruleStartIndex, success): argument
965 self._state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DDbg.stg74 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
76 …((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognize…
77 base.Memoize(input, ruleIndex, ruleStartIndex);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DDbg.stg75 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
77 …((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognize…
78 base.Memoize(input, ruleIndex, ruleStartIndex);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DProfileTreeGrammar.cs83 public virtual void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex ) in Memoize() argument
85 …((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileTreeGrammar.ruleNames[ruleIndex]); in Memoize()
86 super.Memoize(input, ruleIndex, ruleStartIndex); in Memoize()
DProfileGrammarParser.cs93 public virtual void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex ) in Memoize() argument
95 …((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileGrammarParser.ruleNames[ruleIndex… in Memoize()
96 super.Memoize(input, ruleIndex, ruleStartIndex); in Memoize()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
DDbg.stg72 int ruleStartIndex)
74 …((Profiler)dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognize…
75 super.memoize(input, ruleIndex, ruleStartIndex);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
DDbg.stg109 int ruleStartIndex)
111 …((Profiler)self._dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.rec…
112 super.memoize(input, ruleIndex, ruleStartIndex);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DRecognizerSharedState.as47 * the memoization table for ruleIndex. For key ruleStartIndex, you
DBaseRecognizer.as721 public function getRuleMemoization(ruleIndex:int, ruleStartIndex:int):int {
725 var stopIndex:* = state.ruleMemo[ruleIndex][ruleStartIndex];
762 ruleStartIndex:int):void
773 state.ruleMemo[ruleIndex][ruleStartIndex] = stopTokenIndex;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DProfiler.cs142 int ruleStartIndex, in Memoize() argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DProfiler.cs150 int ruleStartIndex, in Memoize() argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DProfiler.java199 int ruleStartIndex, in memoize() argument
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
DFuzzy.m121 StartIndex:(NSInteger)ruleStartIndex
123 …f ( state.backtracking > 1 ) [super memoize:anInput RuleIndex:ruleIndex StartIndex:ruleStartIndex];
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
DCPP.stg252 public void memoize(IntStream input, int ruleIndex, int ruleStartIndex)
255 super.memoize(input, ruleIndex, ruleStartIndex);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
DActionScript.stg154 ruleStartIndex:int):void
156 if ( this.state.backtracking>1 ) super.memoize(input, ruleIndex, ruleStartIndex);

12