Searched defs:trappedException (Results 1 - 9 of 9) sorted by last modified time

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonErrorNode.h43 ANTLRRecognitionException *trappedException; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonErrorNode.h43 ANTLRRecognitionException *trappedException; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonErrorNode.h43 ANTLRRecognitionException *trappedException; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonErrorNode.h43 ANTLRRecognitionException *trappedException; variable
66 @property (retain) ANTLRRecognitionException *trappedException; variable
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs41 public RecognitionException trappedException; field in class:Antlr.Runtime.Tree.CommonErrorNode
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
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs43 public RecognitionException trappedException; field in class:Antlr.Runtime.Tree.CommonErrorNode
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
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java37 public RecognitionException trappedException; field in class:CommonErrorNode
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
[all...]
/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/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonErrorNode.as11 public var trappedException:RecognitionException; variable
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
[all...]

Completed in 414 milliseconds