OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:trappedException
(Results
1 - 13
of
13
) sorted by null
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonErrorNode.java
37
public RecognitionException
trappedException
;
56
this.
trappedException
= e;
89
if (
trappedException
instanceof MissingTokenException ) {
91
((MissingTokenException)
trappedException
).getMissingType()+
94
else if (
trappedException
instanceof UnwantedTokenException ) {
96
((UnwantedTokenException)
trappedException
).getUnexpectedToken()+
99
else if (
trappedException
instanceof MismatchedTokenException ) {
100
return "<mismatched token: "+
trappedException
.token+", resync="+getText()+">";
102
else if (
trappedException
instanceof NoViableAltException ) {
103
return "<unexpected: "+
trappedException
.token
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs
41
public RecognitionException
trappedException
;
58
this.
trappedException
= e;
99
if (
trappedException
is MissingTokenException) {
101
((MissingTokenException)
trappedException
).MissingType +
103
} else if (
trappedException
is UnwantedTokenException) {
105
((UnwantedTokenException)
trappedException
).UnexpectedToken +
107
} else if (
trappedException
is MismatchedTokenException) {
108
return "<mismatched token: " +
trappedException
.Token + ", resync=" + Text + ">";
109
} else if (
trappedException
is NoViableAltException) {
110
return "<unexpected: " +
trappedException
.Token
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs
43
public RecognitionException
trappedException
;
62
this.
trappedException
= e;
118
if (
trappedException
is MissingTokenException )
121
( (MissingTokenException)
trappedException
).MissingType +
124
else if (
trappedException
is UnwantedTokenException )
127
( (UnwantedTokenException)
trappedException
).UnexpectedToken +
130
else if (
trappedException
is MismatchedTokenException )
132
return "<mismatched token: " +
trappedException
.Token + ", resync=" + Text + ">";
134
else if (
trappedException
is NoViableAltException )
136
return "<unexpected: " +
trappedException
.Token
[
all
...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as
11
public var
trappedException
:RecognitionException;
30
this.
trappedException
= e;
63
if (
trappedException
is MissingTokenException ) {
65
MissingTokenException(
trappedException
).missingType+
68
else if (
trappedException
is UnwantedTokenException ) {
70
UnwantedTokenException(
trappedException
).unexpectedToken+
73
else if (
trappedException
is MismatchedTokenException ) {
74
return "<mismatched token: "+
trappedException
.token+", resync="+getText()+">";
76
else if (
trappedException
is NoViableAltException ) {
77
return "<unexpected: "+
trappedException
.token
[
all
...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js
15
this.
trappedException
= e;
49
if ( this.
trappedException
instanceof org.antlr.runtime.MissingTokenException ) {
51
this.
trappedException
.getMissingType()+
54
else if ( this.
trappedException
instanceof org.antlr.runtime.UnwantedTokenException ) {
56
this.
trappedException
.getUnexpectedToken()+
59
else if ( this.
trappedException
instanceof org.antlr.runtime.MismatchedTokenException ) {
60
return "<mismatched token: "+this.
trappedException
.token+", resync="+this.getText()+">";
62
else if ( this.
trappedException
instanceof org.antlr.runtime.NoViableAltException ) {
63
return "<unexpected: "+this.
trappedException
.token+
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonErrorNode.h
43
ANTLRRecognitionException *
trappedException
;
66
@property (retain) ANTLRRecognitionException *
trappedException
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonErrorNode.h
43
ANTLRRecognitionException *
trappedException
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonErrorNode.h
43
ANTLRRecognitionException *
trappedException
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonErrorNode.h
43
ANTLRRecognitionException *
trappedException
;
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g
154
public RecognitionException
trappedException
;
171
this.
trappedException
= e;
210
if (
trappedException
instanceof MissingTokenException)
213
( (MissingTokenException)
trappedException
).getMissingType() +
215
} else if (
trappedException
instanceof UnwantedTokenException) {
217
( (UnwantedTokenException)
trappedException
).getUnexpectedToken() +
219
} else if (
trappedException
instanceof MismatchedTokenException) {
220
return "<mismatched token: " +
trappedException
.token + ", resync=" + getText() + ">";
221
} else if (
trappedException
instanceof NoViableAltException) {
222
return "<unexpected: " +
trappedException
.token
[
all
...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py
[
all
...]
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
/prebuilts/misc/common/antlr/
antlr-3.4-complete.jar
Completed in 2424 milliseconds