/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | UnwantedTokenException.cs | 42 public class UnwantedTokenException : MismatchedTokenException class 44 public UnwantedTokenException() in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 48 public UnwantedTokenException(string message) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 53 public UnwantedTokenException(string message, Exception innerException) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 58 public UnwantedTokenException(int expecting, IIntStream input) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 68 …public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> token… in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 73 …public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> token… in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 78 protected UnwantedTokenException(SerializationInfo info, StreamingContext context) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException
|
D | BaseRecognizer.cs | 276 if ( e is UnwantedTokenException ) in GetErrorMessage() 278 UnwantedTokenException ute = (UnwantedTokenException)e; in GetErrorMessage() 701 e = new UnwantedTokenException( ttype, input, TokenNames ); in RecoverFromMismatchedToken()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | UnwantedTokenException.cs | 41 public class UnwantedTokenException : MismatchedTokenException { class 42 public UnwantedTokenException() { in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 45 public UnwantedTokenException(string message) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 49 public UnwantedTokenException(string message, Exception innerException) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 53 public UnwantedTokenException(int expecting, IIntStream input) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 61 …public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> token… in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 65 …public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> token… in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException 69 protected UnwantedTokenException(SerializationInfo info, StreamingContext context) in UnwantedTokenException() method in Antlr.Runtime.UnwantedTokenException
|
D | BaseRecognizer.cs | 252 if (e is UnwantedTokenException) { in GetErrorMessage() 253 UnwantedTokenException ute = (UnwantedTokenException)e; in GetErrorMessage() 620 e = new UnwantedTokenException(ttype, input, TokenNames); in RecoverFromMismatchedToken()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | UnwantedTokenException.as | 3 public class UnwantedTokenException extends MismatchedTokenException class in org.antlr.runtime 5 public function UnwantedTokenException(expecting:int, input:IntStream) method in org.antlr.runtime.UnwantedTokenException 20 return "UnwantedTokenException(found="+null+exp+")"; 22 return "UnwantedTokenException(found="+token.text+exp+")";
|
D | BaseRecognizer.as | 131 throw new UnwantedTokenException(ttype, input); 200 if ( e is UnwantedTokenException ) { 201 var ute:UnwantedTokenException = UnwantedTokenException(e); 562 e = new UnwantedTokenException(ttype, input);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | UnwantedTokenException.java | 31 public class UnwantedTokenException extends MismatchedTokenException { class 33 public UnwantedTokenException() {;} in UnwantedTokenException() method in UnwantedTokenException 35 public UnwantedTokenException(int expecting, IntStream input) { in UnwantedTokenException() method in UnwantedTokenException
|
D | BaseRecognizer.java | 221 if ( e instanceof UnwantedTokenException ) { in getErrorMessage() 222 UnwantedTokenException ute = (UnwantedTokenException)e; in getErrorMessage() 594 e = new UnwantedTokenException(ttype, input); in recoverFromMismatchedToken()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | UnwantedTokenException.js | 2 org.antlr.runtime.UnwantedTokenException = function(expecting, input) { class in org.antlr.runtime 4 org.antlr.runtime.UnwantedTokenException.superclass.constructor.call( 10 org.antlr.runtime.UnwantedTokenException,
|
D | BaseRecognizer.js | 194 throw new org.antlr.runtime.UnwantedTokenException(ttype, input); 296 if ( e instanceof org.antlr.runtime.UnwantedTokenException ) { 656 e = new org.antlr.runtime.UnwantedTokenException(ttype, input);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | CommonErrorNode.cs | 124 else if ( trappedException is UnwantedTokenException ) in ToString() 127 ( (UnwantedTokenException)trappedException ).UnexpectedToken + in ToString()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | CommonErrorNode.cs | 103 } else if (trappedException is UnwantedTokenException) { in ToString() 105 ((UnwantedTokenException)trappedException).UnexpectedToken + in ToString()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonErrorNode.java | 94 else if ( trappedException instanceof UnwantedTokenException ) { in toString() 96 ((UnwantedTokenException)trappedException).getUnexpectedToken()+ in toString()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | CommonErrorNode.as | 68 else if ( trappedException is UnwantedTokenException ) { 70 UnwantedTokenException(trappedException).unexpectedToken+
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | UnwantedTokenException.pm | 1 package ANTLR::Runtime::UnwantedTokenException;
|
D | BaseRecognizer.pm | 8 use ANTLR::Runtime::UnwantedTokenException; 127 ANTLR::Runtime::UnwantedTokenException->new({ 327 my $ex = ANTLR::Runtime::UnwantedTokenException->new({
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRUnwantedTokenException.m | 75 return [NSString stringWithFormat:@"UnwantedTokenException(found=%@)", exp1]; 77 return [NSString stringWithFormat:@"UnwantedTokenException(found=%@ %@", token.text, exp1];
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | CommonErrorNode.js | 54 else if ( this.trappedException instanceof org.antlr.runtime.UnwantedTokenException ) {
|
/external/antlr/antlr-3.4/runtime/Perl5/ |
D | MANIFEST | 45 lib/ANTLR/Runtime/UnwantedTokenException.pm
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | recognizers.py | 43 BacktrackingFailed, UnwantedTokenException, MissingTokenException 321 if isinstance(e, UnwantedTokenException): 703 e = UnwantedTokenException(ttype, input)
|
D | exceptions.py | 212 class UnwantedTokenException(MismatchedTokenException): class
|
D | tree.py | 48 MissingTokenException, UnwantedTokenException, MismatchedTokenException, \ 1455 elif isinstance(self.trappedException, UnwantedTokenException):
|
/external/antlr/antlr-3.4/runtime/JavaScript/build/ |
D | antlr3.properties | 14 org/antlr/runtime/UnwantedTokenException.js,\
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
D | ANTLR.g | 215 } else if (trappedException instanceof UnwantedTokenException) { 217 ( (UnwantedTokenException)trappedException ).getUnexpectedToken() +
|
/external/smali/smalidea/src/main/antlr/ |
D | smalideaParser.g | 106 e = new UnwantedTokenException(ttype, input);
|