Searched refs:errorRecovery (Results 1 - 25 of 44) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognizerSharedState.js21 this.errorRecovery = false;
H A DBaseRecognizer.js78 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>
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognizerSharedState.cs67 public bool errorRecovery; field in class:Antlr.Runtime.RecognizerSharedState
165 errorRecovery = state.errorRecovery;
H A DBaseRecognizer.cs104 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.
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognizerSharedState.cs69 public bool errorRecovery; field in class:Antlr.Runtime.RecognizerSharedState
169 errorRecovery = state.errorRecovery;
H A DBaseRecognizer.cs113 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.
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognizerSharedState.java50 public boolean errorRecovery = false; field in class:RecognizerSharedState
128 this.errorRecovery = state.errorRecovery;
H A DBaseRecognizer.java77 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/
H A Dantlr3recognizersharedstate.h87 ANTLR3_BOOLEAN errorRecovery; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognizerSharedState.h35 BOOL errorRecovery; // are we recovering? variable
53 @property (assign) BOOL errorRecovery; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognizerSharedState.h35 BOOL errorRecovery; // are we recovering? variable
53 @property (assign) BOOL errorRecovery; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognizerSharedState.h35 BOOL errorRecovery; // are we recovering? variable
53 @property (assign) BOOL errorRecovery; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRecognizerSharedState.h36 BOOL errorRecovery; // are we recovering? variable
54 @property (assign) BOOL errorRecovery; variable
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs111 state.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs122 state.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeParser.js54 this.state.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as84 state.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py66 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 mod
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c115 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.
2129 recognizer->state->errorRecovery
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as42 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.
H A DRecognizerSharedState.as22 public var errorRecovery:Boolean = false; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java376 state.errorRecovery=false;
781 state.errorRecovery=false;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java376 state.errorRecovery=false;
781 state.errorRecovery=false;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java101 state.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParser.cs741 state.errorRecovery=false;
1087 state.errorRecovery=false;

Completed in 846 milliseconds

12