/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | MismatchedTokenException.cs | 44 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
|
D | Lexer.cs | 160 catch (MismatchedTokenException mte) in NextToken() 270 … MismatchedTokenException 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()
|
D | BaseRecognizer.cs | 307 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/ |
D | MismatchedTokenException.cs | 46 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
|
D | Lexer.cs | 216 … MismatchedTokenException 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()
|
D | BaseRecognizer.cs | 271 } 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/ |
D | Lexer.java | 98 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()
|
D | MismatchedTokenException.java | 31 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
|
D | BaseRecognizer.java | 244 else if ( e instanceof MismatchedTokenException ) { in getErrorMessage() 245 MismatchedTokenException mte = (MismatchedTokenException)e; in getErrorMessage() 617 e = new MismatchedTokenException(ttype, input); in recoverFromMismatchedToken()
|
D | UnwantedTokenException.java | 31 public class UnwantedTokenException extends MismatchedTokenException {
|
D | MissingTokenException.java | 33 public class MissingTokenException extends MismatchedTokenException {
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
D | SlimLexer.cs | 278 … MismatchedTokenException 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/ |
D | MismatchedTokenException.js | 1 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,
|
D | Lexer.js | 134 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 ) {
|
D | UnwantedTokenException.js | 11 org.antlr.runtime.MismatchedTokenException, {
|
/external/antlr/runtime/ObjC/Framework/ |
D | MismatchedTokenException.m | 27 #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];
|
D | Lexer.m | 151 @catch (MismatchedTokenException *re) { 236 …MismatchedTokenException *mte = [MismatchedTokenException newExceptionChar:[aString characterAtInd… 263 … MismatchedTokenException *mte = [MismatchedTokenException newExceptionChar:aChar Stream:input]; 345 if ( [e isKindOfClass:[MismatchedTokenException class]] ) { 346 MismatchedTokenException *mte = (MismatchedTokenException *)e;
|
D | UnwantedTokenException.h | 35 @interface UnwantedTokenException : MismatchedTokenException {
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | MismatchedTokenException.as | 31 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+")";
|
D | Lexer.as | 162 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/ |
D | exceptions.py | 196 class MismatchedTokenException(RecognitionException): class 212 class UnwantedTokenException(MismatchedTokenException): 231 class MissingTokenException(MismatchedTokenException): 238 MismatchedTokenException.__init__(self, expecting, input)
|
D | recognizers.py | 39 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/ |
D | exceptions.py | 196 class MismatchedTokenException(RecognitionException): class 211 class UnwantedTokenException(MismatchedTokenException): 230 class MissingTokenException(MismatchedTokenException):
|
D | recognizers.py | 38 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/ |
D | MismatchedTokenException.pm | 1 package ANTLR::Runtime::MismatchedTokenException;
|