Searched defs:MismatchedTokenException (Results 1 - 11 of 11) sorted by relevance

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedTokenException.as31 public class MismatchedTokenException extends RecognitionException {
34 public function MismatchedTokenException(expecting:int, input:IntStream) { function
40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DMismatchedTokenException.js1 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"
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DMismatchedTokenException.pm1 package ANTLR::Runtime::MismatchedTokenException;
28 return "MismatchedTokenException(" . $self->get_unexpected_type() . "!=" . $self->expecting . ")";
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMismatchedTokenException.java31 public class MismatchedTokenException extends RecognitionException { class in inherits:RecognitionException
35 public MismatchedTokenException() {;} method in class:MismatchedTokenException
37 public MismatchedTokenException(int expecting, IntStream input) { method in class:MismatchedTokenException
43 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")";
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedTokenException.cs46 public class MismatchedTokenException : RecognitionException { class in namespace:Antlr.Runtime
50 public MismatchedTokenException() { method in class:Antlr.Runtime.MismatchedTokenException
53 public MismatchedTokenException(string message) method in class:Antlr.Runtime.MismatchedTokenException
57 public MismatchedTokenException(string message, Exception innerException) method in class:Antlr.Runtime.MismatchedTokenException
61 public MismatchedTokenException(int expecting, IIntStream input) method in class:Antlr.Runtime.MismatchedTokenException
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.MismatchedTokenException
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.MismatchedTokenException
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) method in class:Antlr.Runtime.MismatchedTokenException
89 protected MismatchedTokenException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.MismatchedTokenException
131 return "MismatchedTokenException("
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedTokenException.cs44 public class MismatchedTokenException : RecognitionException class in namespace:Antlr.Runtime
49 public MismatchedTokenException() method in class:Antlr.Runtime.MismatchedTokenException
53 public MismatchedTokenException(string message) method in class:Antlr.Runtime.MismatchedTokenException
58 public MismatchedTokenException(string message, Exception innerException) method in class:Antlr.Runtime.MismatchedTokenException
63 public MismatchedTokenException(int expecting, IIntStream input) method in class:Antlr.Runtime.MismatchedTokenException
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.MismatchedTokenException
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.MismatchedTokenException
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) method in class:Antlr.Runtime.MismatchedTokenException
95 protected MismatchedTokenException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.MismatchedTokenException
136 return "MismatchedTokenException("
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py196 class MismatchedTokenException(RecognitionException): class in inherits:RecognitionException
205 #return "MismatchedTokenException("+self.expecting+")"
206 return "MismatchedTokenException(%r!=%r)" % (
212 class UnwantedTokenException(MismatchedTokenException):
231 class MissingTokenException(MismatchedTokenException):
238 MismatchedTokenException.__init__(self, expecting, input)
H A Drecognizers.py39 from antlr3.exceptions import RecognitionException, MismatchedTokenException, \
201 that fails, throw 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):
43 BacktrackingFailed, UnwantedTokenException, MissingTokenException namespace
H A Dtree.py48 MissingTokenException, UnwantedTokenException, MismatchedTokenException, \
1460 elif isinstance(self.trappedException, MismatchedTokenException):
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/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 2979 milliseconds