Searched refs:MismatchedTokenException (Results 1 - 25 of 52) sorted by relevance

123

/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+")";
H A DUnwantedTokenException.java31 public class UnwantedTokenException extends MismatchedTokenException {
H A DMissingTokenException.java33 public class MissingTokenException extends MismatchedTokenException {
H A DLexer.java102 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)
[all...]
/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"
H A DMissingTokenException.js11 org.antlr.runtime.MismatchedTokenException, {
H A DUnwantedTokenException.js11 org.antlr.runtime.MismatchedTokenException, {
/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+")";
H A DMissingTokenException.as3 public class MissingTokenException extends MismatchedTokenException {
H A DLexer.as162 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/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...]
H A DLexer.cs163 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;
H A DMissingTokenException.cs46 public class MissingTokenException : MismatchedTokenException
H A DUnwantedTokenException.cs42 public class UnwantedTokenException : MismatchedTokenException
/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...]
H A DLexer.cs216 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;
H A DMissingTokenException.cs45 public class MissingTokenException : MismatchedTokenException {
H A DUnwantedTokenException.cs41 public class UnwantedTokenException : 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/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs278 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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs107 } else if (trappedException is MismatchedTokenException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs130 else if ( trappedException is MismatchedTokenException )
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java99 else if ( trappedException instanceof MismatchedTokenException ) {
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonErrorNode.js59 else if ( this.trappedException instanceof org.antlr.runtime.MismatchedTokenException ) {
/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)

Completed in 561 milliseconds

123