/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognizerSharedState.cs | 79 public int lastErrorIndex; field in Antlr.Runtime.RecognizerSharedState 158 lastErrorIndex = -1; in RecognizerSharedState() 170 lastErrorIndex = state.lastErrorIndex; in RecognizerSharedState()
|
D | BaseRecognizer.cs | 116 state.lastErrorIndex = -1; in Reset() 448 if ( state.lastErrorIndex == input.Index ) in Recover() 456 state.lastErrorIndex = input.Index; in Recover()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognizerSharedState.cs | 77 public int lastErrorIndex; field in Antlr.Runtime.RecognizerSharedState 155 lastErrorIndex = -1; in RecognizerSharedState() 166 lastErrorIndex = state.lastErrorIndex; in RecognizerSharedState()
|
D | BaseRecognizer.cs | 105 state.lastErrorIndex = -1; in Reset() 379 if (state.lastErrorIndex == input.Index) { in Recover() 386 state.lastErrorIndex = input.Index; in Recover()
|
/external/antlr/runtime/ObjC/Framework/ |
D | RecognizerSharedState.m | 38 @synthesize lastErrorIndex; 73 lastErrorIndex = -1; 104 lastErrorIndex = -1; 136 lastErrorIndex = aState.lastErrorIndex; 320 - (NSInteger) lastErrorIndex 322 return lastErrorIndex; 327 lastErrorIndex = value;
|
D | RecognizerSharedState.h | 37 NSInteger lastErrorIndex; variable 55 @property (assign) NSInteger lastErrorIndex; 114 - (NSInteger) lastErrorIndex;
|
D | BaseRecognizer.m | 111 state.lastErrorIndex = -1; 132 state.lastErrorIndex = -1; 155 state.lastErrorIndex = -1; 187 state.lastErrorIndex = -1; 494 if ( state.lastErrorIndex == anInput.index ) { 501 state.lastErrorIndex = anInput.index;
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | RecognizerSharedState.java | 59 public int lastErrorIndex = -1; field in RecognizerSharedState 131 this.lastErrorIndex = state.lastErrorIndex; in RecognizerSharedState()
|
D | BaseRecognizer.java | 78 state.lastErrorIndex = -1; in reset() 354 if ( state.lastErrorIndex==input.index() ) { in recover() 361 state.lastErrorIndex = input.index(); in recover()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | RecognizerSharedState.js | 29 this.lastErrorIndex = -1;
|
D | BaseRecognizer.js | 79 this.state.lastErrorIndex = -1; 396 if ( this.state.lastErrorIndex==input.index() ) { 403 this.state.lastErrorIndex = input.index();
|
/external/antlr/runtime/C/include/ |
D | antlr3recognizersharedstate.h | 95 ANTLR3_MARKER lastErrorIndex; member
|
/external/antlr/runtime/Python/antlr3/ |
D | recognizers.py | 73 self.lastErrorIndex = -1 189 self._state.lastErrorIndex = -1 461 if self._state.lastErrorIndex == input.index(): 468 self._state.lastErrorIndex = input.index()
|
/external/antlr/runtime/Python3/antlr3/ |
D | recognizers.py | 71 self.lastErrorIndex = -1 188 self._state.lastErrorIndex = -1 453 if self._state.lastErrorIndex == input.index(): 460 self._state.lastErrorIndex = input.index()
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3recognizersharedstate.hpp | 238 void set_lastErrorIndex( ANTLR_MARKER lastErrorIndex );
|
D | antlr3recognizersharedstate.inl | 174 …id RecognizerSharedState<ImplTraits, StreamType>::set_lastErrorIndex( ANTLR_MARKER lastErrorIndex ) argument 176 m_lastErrorIndex = lastErrorIndex;
|
/external/antlr/runtime/C/src/ |
D | antlr3baserecognizer.c | 116 recognizer->state->lastErrorIndex = -1; in antlr3BaseRecognizerNew() 1357 if (recognizer->state->lastErrorIndex == is->index(is)) in recover() 1369 recognizer->state->lastErrorIndex = is->index(is); in recover() 2130 recognizer->state->lastErrorIndex = -1; in reset()
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | RecognizerSharedState.as | 30 public var lastErrorIndex:int = -1; variable in org.antlr.runtime.RecognizerSharedState
|
D | BaseRecognizer.as | 43 state.lastErrorIndex = -1; 330 if ( state.lastErrorIndex==input.index) { 337 state.lastErrorIndex = input.index;
|