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

1 2

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MissingTokenException.as 3 public class MissingTokenException extends MismatchedTokenException {
7 public function MissingTokenException(expecting:int, input:IntStream, inserted:Object) {
18 return "MissingTokenException(inserted "+inserted+" at "+token.text+")";
21 return "MissingTokenException(at "+token.text+")";
23 return "MissingTokenException";
BaseRecognizer.as 134 throw new MissingTokenException(ttype, input, null);
212 else if ( e is MissingTokenException ) {
213 var mite:MissingTokenException = MissingTokenException(e);
580 e = new MissingTokenException(ttype, input, inserted);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MissingTokenException.js 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) {
3 org.antlr.runtime.MissingTokenException.superclass.constructor.call(
10 org.antlr.runtime.MissingTokenException,
20 return "MissingTokenException(inserted "+this.inserted+" at "+this.token.getText()+")";
23 return "MissingTokenException(at "+this.token.getText()+")";
25 return "MissingTokenException";
27 name: "org.antlr.runtime.MissingTokenException"
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MissingTokenException.pm 1 package ANTLR::Runtime::MissingTokenException;
24 return "MissingTokenException(inserted $inserted at " . $token->get_text() . ")";
27 return "MissingTokenException(at " . $self->token->get_text() . ")";
30 return "MissingTokenException";
BaseRecognizer.pm 9 use ANTLR::Runtime::MissingTokenException;
133 ANTLR::Runtime::MissingTokenException->new({
348 my $ex = ANTLR::Runtime::MissingTokenException({
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MissingTokenException.cs 45 public class MissingTokenException : MismatchedTokenException {
48 public MissingTokenException() {
51 public MissingTokenException(string message)
55 public MissingTokenException(string message, Exception innerException)
59 public MissingTokenException(int expecting, IIntStream input, object inserted)
63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames)
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames)
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
78 protected MissingTokenException(SerializationInfo info, StreamingContext context)
90 return "MissingTokenException(inserted " + _inserted + " at " + Token.Text + ")"
    [all...]
BaseRecognizer.cs 262 } else if (e is MissingTokenException) {
263 MissingTokenException mte = (MissingTokenException)e;
638 e = new MissingTokenException(ttype, input, inserted);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MissingTokenException.cs 46 public class MissingTokenException : MismatchedTokenException
50 public MissingTokenException()
54 public MissingTokenException(string message)
59 public MissingTokenException(string message, Exception innerException)
64 public MissingTokenException(int expecting, IIntStream input, object inserted)
69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames)
75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames)
81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
87 protected MissingTokenException(SerializationInfo info, StreamingContext context)
104 return "MissingTokenException(inserted " + _inserted + " at " + Token.Text + ")"
    [all...]
Antlr3.Runtime.csproj 86 <Compile Include="MissingTokenException.cs" />
BaseRecognizer.cs 291 else if ( e is MissingTokenException )
293 MissingTokenException mte = (MissingTokenException)e;
720 e = new MissingTokenException( ttype, input, inserted );
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MissingTokenException.java 33 public class MissingTokenException extends MismatchedTokenException {
36 public MissingTokenException() {;}
38 public MissingTokenException(int expecting, IntStream input, Object inserted) {
49 return "MissingTokenException(inserted "+inserted+" at "+token.getText()+")";
52 return "MissingTokenException(at "+token.getText()+")";
54 return "MissingTokenException";
BaseRecognizer.java 233 else if ( e instanceof MissingTokenException ) {
234 MissingTokenException mte = (MissingTokenException)e;
612 e = new MissingTokenException(ttype, input, inserted);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMissingTokenException.m 74 return [NSString stringWithFormat:@"MissingTokenException(inserted %@ at %@)", inserted, token.text];
77 return [NSString stringWithFormat:@"MissingTokenException(at %@)", token.text ];
79 return @"MissingTokenException";
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as 63 if ( trappedException is MissingTokenException ) {
65 MissingTokenException(trappedException).missingType+
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 99 if (trappedException is MissingTokenException) {
101 ((MissingTokenException)trappedException).MissingType +
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 118 if ( trappedException is MissingTokenException )
121 ( (MissingTokenException)trappedException ).MissingType +
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonErrorNode.java 89 if ( trappedException instanceof MissingTokenException ) {
91 ((MissingTokenException)trappedException).getMissingType()+
  /external/antlr/antlr-3.4/runtime/Perl5/
MANIFEST 37 lib/ANTLR/Runtime/MissingTokenException.pm
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
antlr3.properties 15 org/antlr/runtime/MissingTokenException.js,\
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js 49 if ( this.trappedException instanceof org.antlr.runtime.MissingTokenException ) {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/
.flexLibProperties 47 <classEntry path="org.antlr.runtime.MissingTokenException"/>
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 231 class MissingTokenException(MismatchedTokenException):
249 return "MissingTokenException(inserted %r at %r)" % (
253 return "MissingTokenException(at %r)" % self.token.text
255 return "MissingTokenException"
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3exception.h 95 #define ANTLR3_MISSING_TOKEN_EXCEPTION_NAME "org.antlr.runtime.MissingTokenException"
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
Antlr3.Runtime (VS2005).csproj 98 <Compile Include="Antlr.Runtime\MissingTokenException.cs" />
Antlr3.Runtime (VS2008).csproj 126 <Compile Include="Antlr.Runtime\MissingTokenException.cs" />

Completed in 495 milliseconds

1 2