HomeSort by relevance Sort by last modified time
    Searched refs:MismatchedTokenException (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MismatchedTokenException.java 31 public class MismatchedTokenException extends RecognitionException {
35 public MismatchedTokenException() {;}
37 public MismatchedTokenException(int expecting, IntStream input) {
43 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")";
UnwantedTokenException.java 31 public class UnwantedTokenException extends MismatchedTokenException {
MissingTokenException.java 33 public class MissingTokenException extends MismatchedTokenException {
Lexer.java 102 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)e
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MismatchedTokenException.js 1 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"
UnwantedTokenException.js 11 org.antlr.runtime.MismatchedTokenException, {
MissingTokenException.js 11 org.antlr.runtime.MismatchedTokenException, {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedTokenException.as 31 public class MismatchedTokenException extends RecognitionException {
34 public function MismatchedTokenException(expecting:int, input:IntStream) {
40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
MissingTokenException.as 3 public class MissingTokenException extends MismatchedTokenException {
Lexer.as 162 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/
MismatchedTokenException.cs 44 public class MismatchedTokenException : RecognitionException
49 public MismatchedTokenException()
53 public MismatchedTokenException(string message)
58 public MismatchedTokenException(string message, Exception innerException)
63 public MismatchedTokenException(int expecting, IIntStream input)
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
95 protected MismatchedTokenException(SerializationInfo info, StreamingContext context)
136 return "MismatchedTokenException(" + unexpected + "!=" + expected + ")"
    [all...]
Lexer.cs 163 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;
MissingTokenException.cs 46 public class MissingTokenException : MismatchedTokenException
UnwantedTokenException.cs 42 public class UnwantedTokenException : MismatchedTokenException
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedTokenException.cs 46 public class MismatchedTokenException : RecognitionException {
50 public MismatchedTokenException() {
53 public MismatchedTokenException(string message)
57 public MismatchedTokenException(string message, Exception innerException)
61 public MismatchedTokenException(int expecting, IIntStream input)
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
89 protected MismatchedTokenException(SerializationInfo info, StreamingContext context)
131 return "MismatchedTokenException(" + unexpected + "!=" + expected + ")"
    [all...]
Lexer.cs 216 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;
MissingTokenException.cs 45 public class MissingTokenException : MismatchedTokenException {
UnwantedTokenException.cs 41 public class UnwantedTokenException : MismatchedTokenException {
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MismatchedTokenException.pm 1 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/
SlimLexer.cs 278 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/Java/src/main/java/org/antlr/runtime/tree/
CommonErrorNode.java 99 else if ( trappedException instanceof MismatchedTokenException ) {
  /external/antlr/antlr-3.4/runtime/Python/tests/
t001lexer.py 51 except antlr3.MismatchedTokenException, exc:
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testexceptions.py 66 """Tests for the antlr3.MismatchedTokenException class"""
70 """MismatchedTokenException.__init__()"""
72 exc = antlr3.MismatchedTokenException()
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 107 } else if (trappedException is MismatchedTokenException) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 130 else if ( trappedException is MismatchedTokenException )

Completed in 2243 milliseconds

1 2 3