HomeSort by relevance Sort by last modified time
    Searched refs:ruleIndex (Results 26 - 50 of 181) sorted by null

12 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 793 public int getRuleMemoization(int ruleIndex, int ruleStartIndex) {
794 if ( state.ruleMemo[ruleIndex]==null ) {
795 state.ruleMemo[ruleIndex] = new HashMap();
798 (Integer)state.ruleMemo[ruleIndex].get(new Integer(ruleStartIndex));
814 public boolean alreadyParsedRule(IntStream input, int ruleIndex) {
815 int stopIndex = getRuleMemoization(ruleIndex, input.index());
820 //System.out.println("rule "+ruleIndex+" will never succeed");
824 //System.out.println("seen rule "+ruleIndex+" before; skipping ahead to @"+(stopIndex+1)+" failed="+state.failed);
834 int ruleIndex,
841 if ( ruleIndex >= state.ruleMemo.length )
    [all...]
SerializedGrammar.java 84 int ruleIndex;
85 public RuleRef(int ruleIndex) { this.ruleIndex = ruleIndex; }
86 public String toString() { return String.valueOf(ruleIndex); }
158 int ruleIndex = in.readShort();
159 alt.add(new RuleRef(ruleIndex));
160 //System.out.println("read rule "+gr.getRuleName(ruleIndex));
Lexer.java 335 public void traceIn(String ruleName, int ruleIndex) {
337 super.traceIn(ruleName, ruleIndex, inputSymbol);
340 public void traceOut(String ruleName, int ruleIndex) {
342 super.traceOut(ruleName, ruleIndex, inputSymbol);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js     [all...]
Lexer.js 275 traceIn: function(ruleName, ruleIndex) {
277 org.antlr.runtime.Lexer.superclass.traceIn.call(this, ruleName, ruleIndex, inputSymbol);
280 traceOut: function(ruleName, ruleIndex) {
282 org.antlr.runtime.Lexer.superclass.traceOut.call(this, ruleName, ruleIndex, inputSymbol);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 280 ANTLR3_INTKEY ruleIndex,
287 ANTLR3_MARKER ruleIndex);
293 ANTLR3_MARKER ruleIndex,
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 150 public function traceIn(ruleName:String, ruleIndex:int):void {
151 super.traceInSymbol(ruleName, ruleIndex, input.LT(1));
154 public function traceOut(ruleName:String, ruleIndex:int):void {
155 super.traceOutSymbol(ruleName, ruleIndex, input.LT(1));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 178 public virtual void TraceIn(string ruleName, int ruleIndex) {
179 base.TraceIn(ruleName, ruleIndex, input.LT(1));
183 public virtual void TraceOut(string ruleName, int ruleIndex) {
184 base.TraceOut(ruleName, ruleIndex, input.LT(1));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 197 public virtual void TraceIn( string ruleName, int ruleIndex )
199 base.TraceIn( ruleName, ruleIndex, input.LT( 1 ) );
203 public virtual void TraceOut( string ruleName, int ruleIndex )
205 base.TraceOut( ruleName, ruleIndex, input.LT( 1 ) );
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 115 traceIn: function(ruleName, ruleIndex) {
116 TP.superclass.traceIn.call(this, ruleName, ruleIndex, this.input.LT(1));
119 traceOut: function(ruleName, ruleIndex) {
120 TP.superclass.traceOut.call(this, ruleName, ruleIndex, this.input.LT(1));
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Dbg.stg 102 public boolean alreadyParsedRule(IntStream input, int ruleIndex) {
103 ((Profiler)self._dbg).examineRuleMemoization(input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
104 return super.alreadyParsedRule(input, ruleIndex);
108 int ruleIndex,
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/ObjC/ANTLR.framework/Headers/
ANTLRLexer.h 87 - (void)traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
88 - (void)traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRLexer.h 87 - (void)traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
88 - (void)traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRLexer.h 87 - (void)traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
88 - (void)traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRLexer.h 87 - (void)traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
88 - (void)traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs     [all...]
Lexer.cs 344 public virtual void TraceIn(string ruleName, int ruleIndex) {
346 base.TraceIn(ruleName, ruleIndex, inputSymbol);
350 public virtual void TraceOut(string ruleName, int ruleIndex) {
352 base.TraceOut(ruleName, ruleIndex, inputSymbol);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs     [all...]
Lexer.cs 417 public virtual void TraceIn( string ruleName, int ruleIndex )
420 base.TraceIn( ruleName, ruleIndex, inputSymbol );
424 public virtual void TraceOut( string ruleName, int ruleIndex )
427 base.TraceOut( ruleName, ruleIndex, inputSymbol );
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 80 # the stop token index for each rule. ruleMemo[ruleIndex] is
81 # the memoization table for ruleIndex. For key ruleStartIndex, you
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t047treeparser.py 16 def traceIn(self, ruleName, ruleIndex):
20 def traceOut(self, ruleName, ruleIndex):
t052import.py 30 def traceIn(self, ruleName, ruleIndex):
34 def traceOut(self, ruleName, ruleIndex):
57 def traceIn(self, ruleName, ruleIndex):
61 def traceOut(self, ruleName, ruleIndex):
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 313 public function traceIn(ruleName:String, ruleIndex:int):void {
315 super.traceInSymbol(ruleName, ruleIndex, inputSymbol);
318 public function traceOut(ruleName:String, ruleIndex:int):void {
320 super.traceOutSymbol(ruleName, ruleIndex, inputSymbol);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 433 public virtual void TraceIn( string ruleName, int ruleIndex )
436 base.TraceIn( ruleName, ruleIndex, inputSymbol );
439 public virtual void TraceOut( string ruleName, int ruleIndex )
442 base.TraceOut( ruleName, ruleIndex, inputSymbol );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 231 public void traceIn(String ruleName, int ruleIndex) {
232 super.traceIn(ruleName, ruleIndex, input.LT(1));
235 public void traceOut(String ruleName, int ruleIndex) {
236 super.traceOut(ruleName, ruleIndex, input.LT(1));

Completed in 1533 milliseconds

12 3 4 5 6 7 8