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

1 2

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 21 this.errorRecovery = false;
BaseRecognizer.js 78 this.state.errorRecovery = false;
113 this.state.errorRecovery = false;
130 this.state.errorRecovery = false;
203 * <p>This method sets errorRecovery to indicate the parser is recovering
212 * <li>next match() will reset errorRecovery mode</li>
222 if ( this.state.errorRecovery ) {
226 this.state.errorRecovery = true;
491 * with the successful match exits errorRecovery mode).</p>
496 * <p>Errors are not generated in errorRecovery mode.</p>
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 67 public bool errorRecovery;
165 errorRecovery = state.errorRecovery;
BaseRecognizer.cs 104 state.errorRecovery = false;
136 state.errorRecovery = false;
150 state.errorRecovery = false;
193 * This method sets errorRecovery to indicate the parser is recovering
202 * 5. next match() will reset errorRecovery mode
210 if (state.errorRecovery) {
215 state.errorRecovery = true;
470 * with the successful match exits errorRecovery mode).
475 * Errors are not generated in errorRecovery mode.
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 69 public bool errorRecovery;
169 errorRecovery = state.errorRecovery;
BaseRecognizer.cs 113 state.errorRecovery = false;
148 state.errorRecovery = false;
164 state.errorRecovery = false;
213 * This method sets errorRecovery to indicate the parser is recovering
222 * 5. next match() will reset errorRecovery mode
231 if ( state.errorRecovery )
237 state.errorRecovery = true;
540 * with the successful match exits errorRecovery mode).
545 * Errors are not generated in errorRecovery mode.
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 50 public boolean errorRecovery = false;
128 this.errorRecovery = state.errorRecovery;
BaseRecognizer.java 77 state.errorRecovery = false;
107 state.errorRecovery = false;
121 state.errorRecovery = false;
163 * This method sets errorRecovery to indicate the parser is recovering
172 * 5. next match() will reset errorRecovery mode
179 if ( state.errorRecovery ) {
184 state.errorRecovery = true;
443 * with the successful match exits errorRecovery mode).
448 * Errors are not generated in errorRecovery mode.
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 87 ANTLR3_BOOLEAN errorRecovery;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRecognizerSharedState.h 35 BOOL errorRecovery; // are we recovering?
53 @property (assign) BOOL errorRecovery;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRecognizerSharedState.h 35 BOOL errorRecovery; // are we recovering?
53 @property (assign) BOOL errorRecovery;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRecognizerSharedState.h 35 BOOL errorRecovery; // are we recovering?
53 @property (assign) BOOL errorRecovery;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognizerSharedState.h 36 BOOL errorRecovery; // are we recovering?
54 @property (assign) BOOL errorRecovery;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 84 state.errorRecovery = false;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 111 state.errorRecovery = false;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 122 state.errorRecovery = false;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 54 this.state.errorRecovery = false;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 66 self.errorRecovery = False
188 self._state.errorRecovery = False
214 self._state.errorRecovery = False
228 self._state.errorRecovery = False
263 This method sets errorRecovery to indicate the parser is recovering
272 5. next match() will reset errorRecovery mode
281 if self._state.errorRecovery:
285 self._state.errorRecovery = True
562 with the successful match exits errorRecovery mode).
567 Errors are not generated in errorRecovery mode
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 115 recognizer->state->errorRecovery = ANTLR3_FALSE;
458 recognizer->state->errorRecovery = ANTLR3_FALSE; // Not in error recovery now (if we were)
520 recognizer->state->errorRecovery = ANTLR3_FALSE;
707 /// This method sets errorRecovery to indicate the parser is recovering
716 /// 5. next match() will reset errorRecovery mode
730 if (recognizer->state->errorRecovery == ANTLR3_TRUE)
739 recognizer->state->errorRecovery = ANTLR3_TRUE;
853 /// with the successful match exits errorRecovery mode).
858 /// Errors are not generated in errorRecovery mode.
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 42 state.errorRecovery = false;
69 state.errorRecovery = false;
83 state.errorRecovery = false;
141 * This method sets errorRecovery to indicate the parser is recovering
150 * 5. next match() will reset errorRecovery mode
157 if ( state.errorRecovery ) {
162 state.errorRecovery = true;
419 * with the successful match exits errorRecovery mode).
424 * Errors are not generated in errorRecovery mode.
RecognizerSharedState.as 22 public var errorRecovery:Boolean = false;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 376 state.errorRecovery=false;
781 state.errorRecovery=false;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 376 state.errorRecovery=false;
781 state.errorRecovery=false;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 101 state.errorRecovery = false;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarParser.cs 741 state.errorRecovery=false;
1087 state.errorRecovery=false;
    [all...]

Completed in 1175 milliseconds

1 2