HomeSort by relevance Sort by last modified time
    Searched full:unwantedtokenexception (Results 1 - 25 of 32) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
UnwantedTokenException.as 3 public class UnwantedTokenException extends MismatchedTokenException
5 public function UnwantedTokenException(expecting:int, input:IntStream)
20 return "UnwantedTokenException(found="+null+exp+")";
22 return "UnwantedTokenException(found="+token.text+exp+")";
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/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"
  /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/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...]
Antlr3.Runtime.csproj 131 <Compile Include="UnwantedTokenException.cs" />
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/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/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/ObjC/Framework/
ANTLRUnwantedTokenException.m 75 return [NSString stringWithFormat:@"UnwantedTokenException(found=%@)", exp1];
77 return [NSString stringWithFormat:@"UnwantedTokenException(found=%@ %@", token.text, exp1];
  /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/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/Perl5/
MANIFEST 45 lib/ANTLR/Runtime/UnwantedTokenException.pm
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
antlr3.properties 14 org/antlr/runtime/UnwantedTokenException.js,\
  /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/ActionScript/project/
.flexLibProperties 48 <classEntry path="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)
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3exception.h 92 #define ANTLR3_UNWANTED_TOKEN_EXCEPTION_NAME "org.antlr.runtime.UnwantedTokenException"
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
Antlr3.Runtime (VS2005).csproj 100 <Compile Include="Antlr.Runtime\UnwantedTokenException.cs" />
Antlr3.Runtime (VS2008).csproj 128 <Compile Include="Antlr.Runtime\UnwantedTokenException.cs" />

Completed in 1283 milliseconds

1 2