HomeSort by relevance Sort by last modified time
    Searched full:errorrecovery (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognizerSharedState.m 37 @synthesize errorRecovery;
72 errorRecovery = NO; // are we recovering?
103 errorRecovery = NO; // are we recovering?
135 errorRecovery = aState.errorRecovery;
274 return errorRecovery;
279 errorRecovery = flag;
ANTLRRecognizerSharedState.h 36 BOOL errorRecovery; // are we recovering?
54 @property (assign) BOOL errorRecovery;
ANTLRBaseRecognizer.m 108 state.errorRecovery = NO; // are we recovering?
129 state.errorRecovery = NO; // are we recovering?
152 state.errorRecovery = NO; // are we recovering?
184 state.errorRecovery = NO; // are we recovering?
235 state.errorRecovery = NO;
249 state.errorRecovery = NO;
293 * This method sets errorRecovery to indicate the parser is recovering
302 * 5. next match() will reset errorRecovery mode
310 if ( state.errorRecovery ) {
315 state.errorRecovery = YES
    [all...]
  /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/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...]
Lexer.cs 270 if ( errorRecovery ) {
274 errorRecovery = true;
  /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...]
Lexer.cs 326 if ( errorRecovery ) {
330 errorRecovery = true;
  /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.
Lexer.java 258 if ( errorRecovery ) {
262 errorRecovery = true;
  /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/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...]
Lexer.js 210 if ( errorRecovery ) {
214 errorRecovery = true;
  /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/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 343 if ( errorRecovery ) {
347 errorRecovery = true;
  /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;

Completed in 452 milliseconds

1 2 3