Searched defs:UnwantedTokenException (Results 1 - 9 of 9) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DUnwantedTokenException.js2 org.antlr.runtime.UnwantedTokenException = function(expecting, input) {
4 org.antlr.runtime.UnwantedTokenException.superclass.constructor.call(
10 org.antlr.runtime.UnwantedTokenException,
21 return "UnwantedTokenException(found="+exp+")";
23 return "UnwantedTokenException(found="+this.token.getText()+exp+")";
25 name: "org.antlr.runtime.UnwantedTokenException"
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DUnwantedTokenException.pm1 package ANTLR::Runtime::UnwantedTokenException;
27 return "UnwantedTokenException(found=" . $self->token->get_text() . "$exp)";
30 return "UnwantedTokenException(found=undef$exp)";
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DUnwantedTokenException.java31 public class UnwantedTokenException extends MismatchedTokenException { class in inherits:MismatchedTokenException
33 public UnwantedTokenException() {;} method in class:UnwantedTokenException
35 public UnwantedTokenException(int expecting, IntStream input) { method in class:UnwantedTokenException
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DUnwantedTokenException.cs41 public class UnwantedTokenException : MismatchedTokenException { class in namespace:Antlr.Runtime
42 public UnwantedTokenException() { method in class:Antlr.Runtime.UnwantedTokenException
45 public UnwantedTokenException(string message) method in class:Antlr.Runtime.UnwantedTokenException
49 public UnwantedTokenException(string message, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
53 public UnwantedTokenException(int expecting, IIntStream input) method in class:Antlr.Runtime.UnwantedTokenException
57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
69 protected UnwantedTokenException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.UnwantedTokenException
89 return "UnwantedTokenException(foun
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnwantedTokenException.cs42 public class UnwantedTokenException : MismatchedTokenException class in namespace:Antlr.Runtime
44 public UnwantedTokenException() method in class:Antlr.Runtime.UnwantedTokenException
48 public UnwantedTokenException(string message) method in class:Antlr.Runtime.UnwantedTokenException
53 public UnwantedTokenException(string message, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
58 public UnwantedTokenException(int expecting, IIntStream input) method in class:Antlr.Runtime.UnwantedTokenException
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
78 protected UnwantedTokenException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.UnwantedTokenException
104 return "UnwantedTokenException(foun
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py212 class UnwantedTokenException(MismatchedTokenException): class in inherits:MismatchedTokenException
225 return "UnwantedTokenException(found=%s%s)" % (None, exp)
227 return "UnwantedTokenException(found=%s%s)" % (self.token.text, exp)
H A Drecognizers.py43 BacktrackingFailed, UnwantedTokenException, MissingTokenException namespace
321 if isinstance(e, UnwantedTokenException):
703 e = UnwantedTokenException(ttype, input)
H A Dtree.py48 MissingTokenException, UnwantedTokenException, MismatchedTokenException, \
1455 elif isinstance(self.trappedException, UnwantedTokenException):
49 NoViableAltException namespace
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 94 milliseconds