OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MissingTokenException
(Results
1 - 8
of
8
) sorted by null
/external/antlr/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
";
/external/antlr/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/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
";
/external/antlr/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
...]
/external/antlr/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
...]
/external/antlr/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) {
50
return "
MissingTokenException
(inserted "+inserted+" at "+token.getText()+")";
53
return "
MissingTokenException
(at "+token.getText()+")";
55
return "
MissingTokenException
";
/external/antlr/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/runtime/Python3/antlr3/
exceptions.py
230
class
MissingTokenException
(MismatchedTokenException):
249
return "
MissingTokenException
(inserted {!r} at {!r})".format(
252
return "
MissingTokenException
(at {!r})".format(self.token.text)
254
return "
MissingTokenException
"
Completed in 874 milliseconds