Home
last modified time | relevance | path

Searched refs:errorRecovery (Results 1 – 25 of 47) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognizerSharedState.cs67 public bool errorRecovery; field in Antlr.Runtime.RecognizerSharedState
165 errorRecovery = state.errorRecovery; in RecognizerSharedState()
DBaseRecognizer.cs104 state.errorRecovery = false; in Reset()
136 state.errorRecovery = false; in Match()
150 state.errorRecovery = false; in MatchAny()
210 if (state.errorRecovery) { in ReportError()
215 state.errorRecovery = true; in ReportError()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognizerSharedState.cs69 public bool errorRecovery; field in Antlr.Runtime.RecognizerSharedState
169 errorRecovery = state.errorRecovery; in RecognizerSharedState()
DBaseRecognizer.cs113 state.errorRecovery = false; in Reset()
148 state.errorRecovery = false; in Match()
164 state.errorRecovery = false; in MatchAny()
231 if ( state.errorRecovery ) in ReportError()
237 state.errorRecovery = true; in ReportError()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DRecognizerSharedState.java50 public boolean errorRecovery = false; field in RecognizerSharedState
128 this.errorRecovery = state.errorRecovery; in RecognizerSharedState()
DBaseRecognizer.java77 state.errorRecovery = false; in reset()
107 state.errorRecovery = false; in match()
121 state.errorRecovery = false; in matchAny()
179 if ( state.errorRecovery ) { in reportError()
184 state.errorRecovery = true; in reportError()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRRecognizerSharedState.m37 @synthesize errorRecovery;
72 errorRecovery = NO; // are we recovering?
103 errorRecovery = NO; // are we recovering?
135 errorRecovery = aState.errorRecovery;
274 return errorRecovery;
279 errorRecovery = flag;
DANTLRRecognizerSharedState.h36 BOOL errorRecovery; // are we recovering? variable
54 @property (assign) BOOL errorRecovery;
DANTLRBaseRecognizer.m108 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/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js78 this.state.errorRecovery = false;
113 this.state.errorRecovery = false;
130 this.state.errorRecovery = false;
222 if ( this.state.errorRecovery ) {
226 this.state.errorRecovery = true;
DRecognizerSharedState.js21 this.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRRecognizerSharedState.h35 BOOL errorRecovery; // are we recovering? variable
53 @property (assign) BOOL errorRecovery;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRRecognizerSharedState.h35 BOOL errorRecovery; // are we recovering? variable
53 @property (assign) BOOL errorRecovery;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRRecognizerSharedState.h35 BOOL errorRecovery; // are we recovering? variable
53 @property (assign) BOOL errorRecovery;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py66 self.errorRecovery = False
188 self._state.errorRecovery = False
214 self._state.errorRecovery = False
228 self._state.errorRecovery = False
281 if self._state.errorRecovery:
285 self._state.errorRecovery = True
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3recognizersharedstate.h87 ANTLR3_BOOLEAN errorRecovery; member
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeParser.cs122 state.errorRecovery = false; in MatchAny()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeParser.cs111 state.errorRecovery = false; in MatchAny()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
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.
DRecognizerSharedState.as22 public var errorRecovery:Boolean = false; variable in org.antlr.runtime.RecognizerSharedState
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3baserecognizer.c115 recognizer->state->errorRecovery = ANTLR3_FALSE; in antlr3BaseRecognizerNew()
458 recognizer->state->errorRecovery = ANTLR3_FALSE; // Not in error recovery now (if we were) in match()
520 recognizer->state->errorRecovery = ANTLR3_FALSE; in matchAny()
730 if (recognizer->state->errorRecovery == ANTLR3_TRUE) in reportError()
739 recognizer->state->errorRecovery = ANTLR3_TRUE; in reportError()
2129 recognizer->state->errorRecovery = ANTLR3_FALSE; in reset()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js54 this.state.errorRecovery = false;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCTP.java376 state.errorRecovery=false; in type()
781 state.errorRecovery=false; in atom()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
DSimpleCTP.java376 state.errorRecovery=false; in type()
781 state.errorRecovery=false; in atom()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java101 state.errorRecovery = false; in matchAny()

12