/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
MismatchedTokenException.js | 1 org.antlr.runtime.MismatchedTokenException = function(expecting, input) { 5 org.antlr.runtime.MismatchedTokenException.superclass.constructor.call( 12 org.antlr.runtime.MismatchedTokenException, 15 return "MismatchedTokenException(" + 18 name: "org.antlr.runtime.MismatchedTokenException"
|
MissingTokenException.js | 11 org.antlr.runtime.MismatchedTokenException, {
|
UnwantedTokenException.js | 11 org.antlr.runtime.MismatchedTokenException, {
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
MismatchedTokenException.pm | 1 package ANTLR::Runtime::MismatchedTokenException; 28 return "MismatchedTokenException(" . $self->get_unexpected_type() . "!=" . $self->expecting . ")";
|
UnwantedTokenException.pm | 8 extends 'ANTLR::Runtime::MismatchedTokenException';
|
MissingTokenException.pm | 8 extends 'ANTLR::Runtime::MismatchedTokenException';
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
MismatchedTokenException.cs | 46 public class MismatchedTokenException : RecognitionException { 50 public MismatchedTokenException() { 53 public MismatchedTokenException(string message) 57 public MismatchedTokenException(string message, Exception innerException) 61 public MismatchedTokenException(int expecting, IIntStream input) 65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) 89 protected MismatchedTokenException(SerializationInfo info, StreamingContext context) 131 return "MismatchedTokenException(" + unexpected + "!=" + expected + ")" [all...] |
Lexer.cs | 216 MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); 236 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); 282 if (e is MismatchedTokenException) { 283 MismatchedTokenException mte = (MismatchedTokenException)e;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
MismatchedTokenException.cs | 44 public class MismatchedTokenException : RecognitionException 49 public MismatchedTokenException() 53 public MismatchedTokenException(string message) 58 public MismatchedTokenException(string message, Exception innerException) 63 public MismatchedTokenException(int expecting, IIntStream input) 68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) 95 protected MismatchedTokenException(SerializationInfo info, StreamingContext context) 136 return "MismatchedTokenException(" + unexpected + "!=" + expected + ")" [all...] |
Lexer.cs | 163 catch (MismatchedTokenException mte) 262 MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); 286 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); 339 if ( e is MismatchedTokenException ) 341 MismatchedTokenException mte = (MismatchedTokenException)e;
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
UnwantedTokenException.as | 3 public class UnwantedTokenException extends MismatchedTokenException
|
MismatchedTokenException.as | 31 public class MismatchedTokenException extends RecognitionException { 34 public function MismatchedTokenException(expecting:int, input:IntStream) { 40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
|
MissingTokenException.as | 3 public class MissingTokenException extends MismatchedTokenException {
|
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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
MismatchedTokenException.java | 31 public class MismatchedTokenException extends RecognitionException { 35 public MismatchedTokenException() {;} 37 public MismatchedTokenException(int expecting, IntStream input) { 43 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")";
|
Lexer.java | 102 catch (MismatchedTokenException re) { 168 public void match(String s) throws MismatchedTokenException { 176 MismatchedTokenException mte = 177 new MismatchedTokenException(s.charAt(i), input); 191 public void match(int c) throws MismatchedTokenException { 197 MismatchedTokenException mte = 198 new MismatchedTokenException(c, input); 270 if ( e instanceof MismatchedTokenException ) { 271 MismatchedTokenException mte = (MismatchedTokenException)e [all...] |
UnwantedTokenException.java | 31 public class UnwantedTokenException extends MismatchedTokenException {
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testexceptions.py | 66 """Tests for the antlr3.MismatchedTokenException class""" 70 """MismatchedTokenException.__init__()""" 72 exc = antlr3.MismatchedTokenException()
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t001lexer.py | 51 except antlr3.MismatchedTokenException, exc:
|
t004lexer.py | 63 except antlr3.MismatchedTokenException, exc:
|
t005lexer.py | 57 except antlr3.MismatchedTokenException, exc:
|
t006lexer.py | 53 except antlr3.MismatchedTokenException, exc:
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
SlimLexer.cs | 278 MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); 302 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); 356 if ( e is MismatchedTokenException ) 358 MismatchedTokenException mte = (MismatchedTokenException)e;
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t001lexer.html | 46 assert(e instanceof org.antlr.runtime.MismatchedTokenException);
|
/external/antlr/antlr-3.4/runtime/Perl5/ |
MANIFEST | 36 lib/ANTLR/Runtime/MismatchedTokenException.pm
|