HomeSort by relevance Sort by last modified time
    Searched refs:ruleStartIndex (Results 1 - 25 of 34) sorted by null

1 2

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
Dbg.stg 75 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
77 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
78 base.Memoize(input, ruleIndex, ruleStartIndex);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
Dbg.stg 74 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
76 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
77 base.Memoize(input, ruleIndex, ruleStartIndex);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
Dbg.stg 84 - (void) memoize:(id<ANTLRIntStream>)input RuleIndex:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex
86 [((Profiler)dbg) memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex [<grammar.composite.rootGrammar.recognizerName> ruleNames[ruleIndex]];
87 [super memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex];
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Dbg.stg 72 int ruleStartIndex)
74 ((Profiler)dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
75 super.memoize(input, ruleIndex, ruleStartIndex);
Java.stg 184 int ruleStartIndex)
186 if ( state.backtracking>1 ) super.memoize(input, ruleIndex, ruleStartIndex);
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
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/
ANTLRBaseRecognizer.h 168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
172 StartIndex:(NSInteger)ruleStartIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseRecognizer.h 168 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
172 StartIndex:(NSInteger)ruleStartIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.h 160 - (NSInteger) getRuleMemoization:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex;
164 StartIndex:(NSInteger)ruleStartIndex;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Dbg.stg 109 int ruleStartIndex)
111 ((Profiler)self._dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
112 super.memoize(input, ruleIndex, ruleStartIndex);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 793 public int getRuleMemoization(int ruleIndex, int ruleStartIndex) {
798 (Integer)state.ruleMemo[ruleIndex].get(new Integer(ruleStartIndex));
835 int ruleStartIndex)
846 new Integer(ruleStartIndex), new Integer(stopTokenIndex)
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs     [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 81 # the memoization table for ruleIndex. For key ruleStartIndex, you
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
ProfileTreeGrammar.cs 83 public virtual void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
85 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileTreeGrammar.ruleNames[ruleIndex]);
86 super.Memoize(input, ruleIndex, ruleStartIndex);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 47 * the memoization table for ruleIndex. For key ruleStartIndex, you
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/ObjC/Framework/examples/fuzzy/
Fuzzy.m 121 StartIndex:(NSInteger)ruleStartIndex
123 if ( state.backtracking > 1 ) [super memoize:anInput RuleIndex:ruleIndex StartIndex:ruleStartIndex];
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 142 int ruleStartIndex,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 150 int ruleStartIndex,
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 199 int ruleStartIndex,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m 391 StartIndex:(NSInteger)ruleStartIndex
393 if ( state.backtracking > 1 ) [super memoize:anInput RuleIndex:ruleIndex StartIndex:ruleStartIndex];
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 154 ruleStartIndex:int):void
156 if ( this.state.backtracking>1 ) super.memoize(input, ruleIndex, ruleStartIndex);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg 252 public void memoize(IntStream input, int ruleIndex, int ruleStartIndex)
255 super.memoize(input, ruleIndex, ruleStartIndex);
    [all...]

Completed in 365 milliseconds

1 2