HomeSort by relevance Sort by last modified time
    Searched refs:UnwantedTokenException (Results 1 - 23 of 23) sorted by null

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnwantedTokenException.java 31 public class UnwantedTokenException extends MismatchedTokenException {
33 public UnwantedTokenException() {;}
35 public UnwantedTokenException(int expecting, IntStream input) {
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
BaseRecognizer.java 221 if ( e instanceof UnwantedTokenException ) {
222 UnwantedTokenException ute = (UnwantedTokenException)e;
594 e = new UnwantedTokenException(ttype, input);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
UnwantedTokenException.cs 41 public class UnwantedTokenException : MismatchedTokenException {
42 public UnwantedTokenException() {
45 public UnwantedTokenException(string message)
49 public UnwantedTokenException(string message, Exception innerException)
53 public UnwantedTokenException(int expecting, IIntStream input)
57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
69 protected UnwantedTokenException(SerializationInfo info, StreamingContext context)
89 return "UnwantedTokenException(found=" + null + exp + ")"
    [all...]
BaseRecognizer.cs 252 if (e is UnwantedTokenException) {
253 UnwantedTokenException ute = (UnwantedTokenException)e;
620 e = new UnwantedTokenException(ttype, input, TokenNames);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnwantedTokenException.cs 42 public class UnwantedTokenException : MismatchedTokenException
44 public UnwantedTokenException()
48 public UnwantedTokenException(string message)
53 public UnwantedTokenException(string message, Exception innerException)
58 public UnwantedTokenException(int expecting, IIntStream input)
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
78 protected UnwantedTokenException(SerializationInfo info, StreamingContext context)
104 return "UnwantedTokenException(found=" + null + exp + ")"
    [all...]
BaseRecognizer.cs 276 if ( e is UnwantedTokenException )
278 UnwantedTokenException ute = (UnwantedTokenException)e;
701 e = new UnwantedTokenException( ttype, input, TokenNames );
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
UnwantedTokenException.js 2 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"
BaseRecognizer.js 194 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);
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
UnwantedTokenException.pm 1 package ANTLR::Runtime::UnwantedTokenException;
27 return "UnwantedTokenException(found=" . $self->token->get_text() . "$exp)";
30 return "UnwantedTokenException(found=undef$exp)";
BaseRecognizer.pm 8 use ANTLR::Runtime::UnwantedTokenException;
127 ANTLR::Runtime::UnwantedTokenException->new({
327 my $ex = ANTLR::Runtime::UnwantedTokenException->new({
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonErrorNode.java 94 else if ( trappedException instanceof UnwantedTokenException ) {
96 ((UnwantedTokenException)trappedException).getUnexpectedToken()+
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 103 } else if (trappedException is UnwantedTokenException) {
105 ((UnwantedTokenException)trappedException).UnexpectedToken +
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 124 else if ( trappedException is UnwantedTokenException )
127 ( (UnwantedTokenException)trappedException ).UnexpectedToken +
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as 68 else if ( trappedException is UnwantedTokenException ) {
70 UnwantedTokenException(trappedException).unexpectedToken+
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js 54 else if ( this.trappedException instanceof org.antlr.runtime.UnwantedTokenException ) {
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 212 class UnwantedTokenException(MismatchedTokenException):
225 return "UnwantedTokenException(found=%s%s)" % (None, exp)
227 return "UnwantedTokenException(found=%s%s)" % (self.token.text, exp)
recognizers.py 43 BacktrackingFailed, UnwantedTokenException, MissingTokenException
321 if isinstance(e, UnwantedTokenException):
703 e = UnwantedTokenException(ttype, input)
    [all...]
tree.py 48 MissingTokenException, UnwantedTokenException, MismatchedTokenException, \
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 131 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/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 215 } else if (trappedException instanceof UnwantedTokenException) {
217 ( (UnwantedTokenException)trappedException ).getUnexpectedToken() +
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 

Completed in 441 milliseconds