/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognizerSharedState.cs | 69 public bool errorRecovery; field in Antlr.Runtime.RecognizerSharedState 169 errorRecovery = state.errorRecovery; in RecognizerSharedState()
|
D | BaseRecognizer.cs | 115 state.errorRecovery = false; in Reset() 150 state.errorRecovery = false; in Match() 166 state.errorRecovery = false; in MatchAny() 233 if ( state.errorRecovery ) in ReportError() 239 state.errorRecovery = true; in ReportError()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognizerSharedState.cs | 67 public bool errorRecovery; field in Antlr.Runtime.RecognizerSharedState 165 errorRecovery = state.errorRecovery; in RecognizerSharedState()
|
D | BaseRecognizer.cs | 104 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/runtime/Java/src/main/java/org/antlr/runtime/ |
D | RecognizerSharedState.java | 51 public boolean errorRecovery = false; field in RecognizerSharedState 130 this.errorRecovery = state.errorRecovery; in RecognizerSharedState()
|
D | BaseRecognizer.java | 77 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/runtime/ObjC/Framework/ |
D | RecognizerSharedState.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;
|
D | RecognizerSharedState.h | 36 BOOL errorRecovery; // are we recovering? variable 54 @property (assign) BOOL errorRecovery;
|
D | BaseRecognizer.m | 110 state.errorRecovery = NO; // are we recovering? 131 state.errorRecovery = NO; // are we recovering? 154 state.errorRecovery = NO; // are we recovering? 186 state.errorRecovery = NO; // are we recovering? 237 state.errorRecovery = NO; 251 state.errorRecovery = NO; 295 * This method sets errorRecovery to indicate the parser is recovering 304 * 5. next match() will reset errorRecovery mode 312 if ( state.errorRecovery ) { 317 state.errorRecovery = YES; [all …]
|
D | Lexer.m | 329 if ( errorRecovery ) { 333 errorRecovery = true;
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | BaseRecognizer.js | 78 this.state.errorRecovery = false; 113 this.state.errorRecovery = false; 130 this.state.errorRecovery = false; 222 if ( this.state.errorRecovery ) { 226 this.state.errorRecovery = true;
|
D | RecognizerSharedState.js | 21 this.errorRecovery = false;
|
/external/antlr/runtime/Python/antlr3/ |
D | recognizers.py | 66 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/runtime/Python3/antlr3/ |
D | recognizers.py | 64 self.errorRecovery = False 187 self._state.errorRecovery = False 213 self._state.errorRecovery = False 227 self._state.errorRecovery = False 280 if self._state.errorRecovery: 284 self._state.errorRecovery = True
|
/external/antlr/runtime/C/include/ |
D | antlr3recognizersharedstate.h | 87 ANTLR3_BOOLEAN errorRecovery; member
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | 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.
|
D | RecognizerSharedState.as | 22 public var errorRecovery:Boolean = false; variable in org.antlr.runtime.RecognizerSharedState
|
/external/antlr/runtime/C/src/ |
D | antlr3baserecognizer.c | 115 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/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeParser.cs | 122 state.errorRecovery = false; in MatchAny()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeParser.cs | 111 state.errorRecovery = false; in MatchAny()
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3recognizersharedstate.hpp | 235 void set_errorRecovery( bool errorRecovery );
|
D | antlr3recognizersharedstate.inl | 159 …_INLINE void RecognizerSharedState<ImplTraits, StreamType>::set_errorRecovery( bool errorRecovery ) argument 161 m_errorRecovery = errorRecovery;
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | TreeParser.js | 54 this.state.errorRecovery = false;
|
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/ |
D | SimpleCTP.java | 376 state.errorRecovery=false; in type() 781 state.errorRecovery=false; in atom()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeParser.java | 106 state.errorRecovery = false; in matchAny()
|