Home
last modified time | relevance | path

Searched refs:MismatchedTokenException (Results 1 – 25 of 76) sorted by relevance

1234

/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedTokenException.cs44 public class MismatchedTokenException : RecognitionException class
49 public MismatchedTokenException() in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
53 public MismatchedTokenException(string message) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
58 public MismatchedTokenException(string message, Exception innerException) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
63 public MismatchedTokenException(int expecting, IIntStream input) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
77 …public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tok… in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
86 …public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tok… in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
95 protected MismatchedTokenException(SerializationInfo info, StreamingContext context) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
DLexer.cs160 catch (MismatchedTokenException mte) in NextToken()
270MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match()
294 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match()
347 if ( e is MismatchedTokenException ) in GetErrorMessage()
349 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
DBaseRecognizer.cs307 else if ( e is MismatchedTokenException ) in GetErrorMessage()
309 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
727 e = new MismatchedTokenException(ttype, input, TokenNames); in RecoverFromMismatchedToken()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedTokenException.cs46 public class MismatchedTokenException : RecognitionException { class
50 public MismatchedTokenException() { in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
53 public MismatchedTokenException(string message) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
57 public MismatchedTokenException(string message, Exception innerException) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
61 public MismatchedTokenException(int expecting, IIntStream input) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
72 …public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tok… in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
81 …public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tok… in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
89 protected MismatchedTokenException(SerializationInfo info, StreamingContext context) in MismatchedTokenException() method in Antlr.Runtime.MismatchedTokenException
DLexer.cs216MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match()
236 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match()
282 if (e is MismatchedTokenException) { in GetErrorMessage()
283 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
DBaseRecognizer.cs271 } else if (e is MismatchedTokenException) { in GetErrorMessage()
272 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
643 e = new MismatchedTokenException(ttype, input, TokenNames); in RecoverFromMismatchedToken()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DLexer.java98 catch (MismatchedTokenException re) { in nextToken()
177 public void match(String s) throws MismatchedTokenException { in match()
185 MismatchedTokenException mte = in match()
186 new MismatchedTokenException(s.charAt(i), input); in match()
200 public void match(int c) throws MismatchedTokenException { in match()
206 MismatchedTokenException mte = in match()
207 new MismatchedTokenException(c, input); in match()
281 if ( e instanceof MismatchedTokenException ) { in getErrorMessage()
282 MismatchedTokenException mte = (MismatchedTokenException)e; in getErrorMessage()
DMismatchedTokenException.java31 public class MismatchedTokenException extends RecognitionException { class
35 public MismatchedTokenException() {;} in MismatchedTokenException() method in MismatchedTokenException
37 public MismatchedTokenException(int expecting, IntStream input) { in MismatchedTokenException() method in MismatchedTokenException
DBaseRecognizer.java244 else if ( e instanceof MismatchedTokenException ) { in getErrorMessage()
245 MismatchedTokenException mte = (MismatchedTokenException)e; in getErrorMessage()
617 e = new MismatchedTokenException(ttype, input); in recoverFromMismatchedToken()
DUnwantedTokenException.java31 public class UnwantedTokenException extends MismatchedTokenException {
DMissingTokenException.java33 public class MissingTokenException extends MismatchedTokenException {
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs278MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match()
302 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match()
356 if ( e is MismatchedTokenException ) in GetErrorMessage()
358 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DMismatchedTokenException.js1 org.antlr.runtime.MismatchedTokenException = function(expecting, input) { class in org.antlr.runtime
5 org.antlr.runtime.MismatchedTokenException.superclass.constructor.call(
12 org.antlr.runtime.MismatchedTokenException,
DLexer.js134 mte = new org.antlr.runtime.MismatchedTokenException(s.charAt(i), this.input);
148 mte = new org.antlr.runtime.MismatchedTokenException(s, this.input);
222 if ( e instanceof org.antlr.runtime.MismatchedTokenException ) {
DUnwantedTokenException.js11 org.antlr.runtime.MismatchedTokenException, {
/external/antlr/runtime/ObjC/Framework/
DMismatchedTokenException.m27 #import "MismatchedTokenException.h"
30 @implementation MismatchedTokenException implementation
39 return [[MismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput];
46 …return [[MismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput Token:…
51 return [[MismatchedTokenException alloc] initWithCharacter:expectedCharacter Stream:anInput];
56 return [[MismatchedTokenException alloc] initWithStream:anInput];
DLexer.m151 @catch (MismatchedTokenException *re) {
236MismatchedTokenException *mte = [MismatchedTokenException newExceptionChar:[aString characterAtInd…
263MismatchedTokenException *mte = [MismatchedTokenException newExceptionChar:aChar Stream:input];
345 if ( [e isKindOfClass:[MismatchedTokenException class]] ) {
346 MismatchedTokenException *mte = (MismatchedTokenException *)e;
DUnwantedTokenException.h35 @interface UnwantedTokenException : MismatchedTokenException {
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DMismatchedTokenException.as31 public class MismatchedTokenException extends RecognitionException { class in org.antlr.runtime
34 public function MismatchedTokenException(expecting:int, input:IntStream) { method in org.antlr.runtime.MismatchedTokenException
40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
DLexer.as162 var mte:MismatchedTokenException =
163 new MismatchedTokenException(s.charCodeAt(i), input);
183 var mte:MismatchedTokenException =
184 new MismatchedTokenException(c, input);
244 if ( e is MismatchedTokenException ) {
245 var mte:MismatchedTokenException = MismatchedTokenException(e);
/external/antlr/runtime/Python/antlr3/
Dexceptions.py196 class MismatchedTokenException(RecognitionException): class
212 class UnwantedTokenException(MismatchedTokenException):
231 class MissingTokenException(MismatchedTokenException):
238 MismatchedTokenException.__init__(self, expecting, input)
Drecognizers.py39 from antlr3.exceptions import RecognitionException, MismatchedTokenException, \
346 elif isinstance(e, MismatchedTokenException):
729 e = MismatchedTokenException(ttype, input)
1196 mte = MismatchedTokenException(c, self.input)
1207 mte = MismatchedTokenException(unichr(s), self.input)
1286 if isinstance(e, MismatchedTokenException):
/external/antlr/runtime/Python3/antlr3/
Dexceptions.py196 class MismatchedTokenException(RecognitionException): class
211 class UnwantedTokenException(MismatchedTokenException):
230 class MissingTokenException(MismatchedTokenException):
Drecognizers.py38 from .exceptions import RecognitionException, MismatchedTokenException, \
341 elif isinstance(e, MismatchedTokenException):
721 e = MismatchedTokenException(ttype, input)
1171 mte = MismatchedTokenException(c, self.input)
1182 mte = MismatchedTokenException(chr(s), self.input)
1260 if isinstance(e, MismatchedTokenException):
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DMismatchedTokenException.pm1 package ANTLR::Runtime::MismatchedTokenException;

1234