Searched refs:UnwantedTokenException (Results 1 - 22 of 22) sorted by relevance

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DUnwantedTokenException.java31 public class UnwantedTokenException extends MismatchedTokenException { class in inherits:MismatchedTokenException
33 public UnwantedTokenException() {;} method in class:UnwantedTokenException
35 public UnwantedTokenException(int expecting, IntStream input) { method in class:UnwantedTokenException
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
H A DBaseRecognizer.java221 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/
H A DUnwantedTokenException.cs41 public class UnwantedTokenException : MismatchedTokenException { class in namespace:Antlr.Runtime
42 public UnwantedTokenException() { method in class:Antlr.Runtime.UnwantedTokenException
45 public UnwantedTokenException(string message) method in class:Antlr.Runtime.UnwantedTokenException
49 public UnwantedTokenException(string message, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
53 public UnwantedTokenException(int expecting, IIntStream input) method in class:Antlr.Runtime.UnwantedTokenException
57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
69 protected UnwantedTokenException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.UnwantedTokenException
89 return "UnwantedTokenException(foun
[all...]
H A DBaseRecognizer.cs252 if (e is UnwantedTokenException) {
253 UnwantedTokenException ute = (UnwantedTokenException)e;
620 e = new UnwantedTokenException(ttype, input, TokenNames);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnwantedTokenException.cs42 public class UnwantedTokenException : MismatchedTokenException class in namespace:Antlr.Runtime
44 public UnwantedTokenException() method in class:Antlr.Runtime.UnwantedTokenException
48 public UnwantedTokenException(string message) method in class:Antlr.Runtime.UnwantedTokenException
53 public UnwantedTokenException(string message, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
58 public UnwantedTokenException(int expecting, IIntStream input) method in class:Antlr.Runtime.UnwantedTokenException
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) method in class:Antlr.Runtime.UnwantedTokenException
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) method in class:Antlr.Runtime.UnwantedTokenException
78 protected UnwantedTokenException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.UnwantedTokenException
104 return "UnwantedTokenException(foun
[all...]
H A DBaseRecognizer.cs276 if ( e is UnwantedTokenException )
278 UnwantedTokenException ute = (UnwantedTokenException)e;
701 e = new UnwantedTokenException( ttype, input, TokenNames );
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DUnwantedTokenException.js2 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"
H A DBaseRecognizer.js194 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);
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DUnwantedTokenException.pm1 package ANTLR::Runtime::UnwantedTokenException;
27 return "UnwantedTokenException(found=" . $self->token->get_text() . "$exp)";
30 return "UnwantedTokenException(found=undef$exp)";
H A DBaseRecognizer.pm8 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.Tree/
H A DCommonErrorNode.cs103 } else if (trappedException is UnwantedTokenException) {
105 ((UnwantedTokenException)trappedException).UnexpectedToken +
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs124 else if ( trappedException is UnwantedTokenException )
127 ( (UnwantedTokenException)trappedException ).UnexpectedToken +
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java94 else if ( trappedException instanceof UnwantedTokenException ) {
96 ((UnwantedTokenException)trappedException).getUnexpectedToken()+
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonErrorNode.as68 else if ( trappedException is UnwantedTokenException ) {
70 UnwantedTokenException(trappedException).unexpectedToken+
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonErrorNode.js54 else if ( this.trappedException instanceof org.antlr.runtime.UnwantedTokenException ) {
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py212 class UnwantedTokenException(MismatchedTokenException): class in inherits:MismatchedTokenException
225 return "UnwantedTokenException(found=%s%s)" % (None, exp)
227 return "UnwantedTokenException(found=%s%s)" % (self.token.text, exp)
H A Drecognizers.py43 BacktrackingFailed, UnwantedTokenException, MissingTokenException namespace
321 if isinstance(e, UnwantedTokenException):
703 e = UnwantedTokenException(ttype, input)
H A Dtree.py48 MissingTokenException, UnwantedTokenException, MismatchedTokenException, \
1455 elif isinstance(self.trappedException, UnwantedTokenException):
49 NoViableAltException namespace
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as131 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/
H A DANTLR.g215 } else if (trappedException instanceof UnwantedTokenException) {
217 ( (UnwantedTokenException)trappedException ).getUnexpectedToken() +
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas2983 Result := 'UnwantedTokenException(found=nil' + Exp + ')'
2985 Result := 'UnwantedTokenException(found=' + Token.Text + Exp + ')'
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 782 milliseconds