Home
last modified time | relevance | path

Searched refs:lastErrorIndex (Results 1 – 19 of 19) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognizerSharedState.cs77 public int lastErrorIndex; field in Antlr.Runtime.RecognizerSharedState
155 lastErrorIndex = -1; in RecognizerSharedState()
166 lastErrorIndex = state.lastErrorIndex; in RecognizerSharedState()
DBaseRecognizer.cs105 state.lastErrorIndex = -1; in Reset()
379 if (state.lastErrorIndex == input.Index) { in Recover()
386 state.lastErrorIndex = input.Index; in Recover()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognizerSharedState.cs79 public int lastErrorIndex; field in Antlr.Runtime.RecognizerSharedState
158 lastErrorIndex = -1; in RecognizerSharedState()
170 lastErrorIndex = state.lastErrorIndex; in RecognizerSharedState()
DBaseRecognizer.cs114 state.lastErrorIndex = -1; in Reset()
446 if ( state.lastErrorIndex == input.Index ) in Recover()
454 state.lastErrorIndex = input.Index; in Recover()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DRecognizerSharedState.java58 public int lastErrorIndex = -1; field in RecognizerSharedState
129 this.lastErrorIndex = state.lastErrorIndex; in RecognizerSharedState()
DBaseRecognizer.java78 state.lastErrorIndex = -1; in reset()
354 if ( state.lastErrorIndex==input.index() ) { in recover()
361 state.lastErrorIndex = input.index(); in recover()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRRecognizerSharedState.m38 @synthesize lastErrorIndex;
73 lastErrorIndex = -1;
104 lastErrorIndex = -1;
136 lastErrorIndex = aState.lastErrorIndex;
320 - (NSInteger) lastErrorIndex
322 return lastErrorIndex;
327 lastErrorIndex = value;
DANTLRRecognizerSharedState.h37 NSInteger lastErrorIndex; variable
55 @property (assign) NSInteger lastErrorIndex;
114 - (NSInteger) lastErrorIndex;
DANTLRBaseRecognizer.m109 state.lastErrorIndex = -1;
130 state.lastErrorIndex = -1;
153 state.lastErrorIndex = -1;
185 state.lastErrorIndex = -1;
491 if ( state.lastErrorIndex == anInput.index ) {
498 state.lastErrorIndex = anInput.index;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRRecognizerSharedState.h36 NSInteger lastErrorIndex; variable
54 @property (assign) NSInteger lastErrorIndex;
113 - (NSInteger) lastErrorIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRRecognizerSharedState.h36 NSInteger lastErrorIndex; variable
54 @property (assign) NSInteger lastErrorIndex;
113 - (NSInteger) lastErrorIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRRecognizerSharedState.h36 NSInteger lastErrorIndex; variable
54 @property (assign) NSInteger lastErrorIndex;
113 - (NSInteger) lastErrorIndex;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DRecognizerSharedState.js29 this.lastErrorIndex = -1;
DBaseRecognizer.js79 this.state.lastErrorIndex = -1;
396 if ( this.state.lastErrorIndex==input.index() ) {
403 this.state.lastErrorIndex = input.index();
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3recognizersharedstate.h95 ANTLR3_MARKER lastErrorIndex; member
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py73 self.lastErrorIndex = -1
189 self._state.lastErrorIndex = -1
461 if self._state.lastErrorIndex == input.index():
468 self._state.lastErrorIndex = input.index()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3baserecognizer.c116 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/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DRecognizerSharedState.as30 public var lastErrorIndex:int = -1; variable in org.antlr.runtime.RecognizerSharedState
DBaseRecognizer.as43 state.lastErrorIndex = -1;
330 if ( state.lastErrorIndex==input.index) {
337 state.lastErrorIndex = input.index;