Home
last modified time | relevance | path

Searched refs:UnwantedTokenException (Results 1 – 25 of 26) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DUnwantedTokenException.cs42 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
DBaseRecognizer.cs276 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/
DUnwantedTokenException.cs41 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
DBaseRecognizer.cs252 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/
DUnwantedTokenException.as3 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+")";
DBaseRecognizer.as131 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/
DUnwantedTokenException.java31 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
DBaseRecognizer.java221 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/
DUnwantedTokenException.js2 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,
DBaseRecognizer.js194 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/
DCommonErrorNode.cs124 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/
DCommonErrorNode.cs103 } 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/
DCommonErrorNode.java94 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/
DCommonErrorNode.as68 else if ( trappedException is UnwantedTokenException ) {
70 UnwantedTokenException(trappedException).unexpectedToken+
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DUnwantedTokenException.pm1 package ANTLR::Runtime::UnwantedTokenException;
DBaseRecognizer.pm8 use ANTLR::Runtime::UnwantedTokenException;
127 ANTLR::Runtime::UnwantedTokenException->new({
327 my $ex = ANTLR::Runtime::UnwantedTokenException->new({
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRUnwantedTokenException.m75 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/
DCommonErrorNode.js54 else if ( this.trappedException instanceof org.antlr.runtime.UnwantedTokenException ) {
/external/antlr/antlr-3.4/runtime/Perl5/
DMANIFEST45 lib/ANTLR/Runtime/UnwantedTokenException.pm
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py43 BacktrackingFailed, UnwantedTokenException, MissingTokenException
321 if isinstance(e, UnwantedTokenException):
703 e = UnwantedTokenException(ttype, input)
Dexceptions.py212 class UnwantedTokenException(MismatchedTokenException): class
Dtree.py48 MissingTokenException, UnwantedTokenException, MismatchedTokenException, \
1455 elif isinstance(self.trappedException, UnwantedTokenException):
/external/antlr/antlr-3.4/runtime/JavaScript/build/
Dantlr3.properties14 org/antlr/runtime/UnwantedTokenException.js,\
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DANTLR.g215 } else if (trappedException instanceof UnwantedTokenException) {
217 ( (UnwantedTokenException)trappedException ).getUnexpectedToken() +
/external/smali/smalidea/src/main/antlr/
DsmalideaParser.g106 e = new UnwantedTokenException(ttype, input);

12