/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | BaseRecognizer.js | 842 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/ |
D | BaseRecognizer.java | 793 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/ |
D | ANTLRBaseRecognizer.h | 168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex; 172 StartIndex:(NSInteger)ruleStartIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRBaseRecognizer.h | 168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex; 172 StartIndex:(NSInteger)ruleStartIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRBaseRecognizer.h | 160 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex; 164 StartIndex:(NSInteger)ruleStartIndex;
|
D | ANTLRBaseRecognizer.m | 999 - (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/ |
D | ANTLRBaseRecognizer.h | 168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex; 172 StartIndex:(NSInteger)ruleStartIndex;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | BaseRecognizer.cs | 850 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/ |
D | BaseRecognizer.cs | 958 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/ |
D | Dbg.stg | 84 …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/ |
D | recognizers.py | 911 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/ |
D | Dbg.stg | 74 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/ |
D | Dbg.stg | 75 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/ |
D | ProfileTreeGrammar.cs | 83 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()
|
D | ProfileGrammarParser.cs | 93 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/ |
D | Dbg.stg | 72 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/ |
D | Dbg.stg | 109 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/ |
D | RecognizerSharedState.as | 47 * the memoization table for ruleIndex. For key ruleStartIndex, you
|
D | BaseRecognizer.as | 721 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/ |
D | Profiler.cs | 142 int ruleStartIndex, in Memoize() argument
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | Profiler.cs | 150 int ruleStartIndex, in Memoize() argument
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | Profiler.java | 199 int ruleStartIndex, in memoize() argument
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/ |
D | Fuzzy.m | 121 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/ |
D | CPP.stg | 252 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/ |
D | ActionScript.stg | 154 ruleStartIndex:int):void 156 if ( this.state.backtracking>1 ) super.memoize(input, ruleIndex, ruleStartIndex);
|