Home
last modified time | relevance | path

Searched refs:getUnexpectedType (Results 1 – 15 of 15) sorted by relevance

/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dexceptions.py177 def getUnexpectedType(self): member in RecognitionException
193 unexpectedType = property(getUnexpectedType)
207 self.getUnexpectedType(), self.expecting
271 self.getUnexpectedType(), self.a, self.b
287 self.getUnexpectedType(), self.expecting
297 self.getUnexpectedType(), self.expecting
362 self.getUnexpectedType(), self.expecting
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DNoViableAltException.java51 return "NoViableAltException('"+(char)getUnexpectedType()+"'@["+grammarDecisionDescription+"])"; in toString()
54 return "NoViableAltException("+getUnexpectedType()+"@["+grammarDecisionDescription+"])"; in toString()
DMismatchedNotSetException.java39 return "MismatchedNotSetException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DMismatchedSetException.java42 return "MismatchedSetException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DMismatchedTokenException.java43 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DMismatchedRangeException.java43 return "MismatchedNotSetException("+getUnexpectedType()+" not in ["+a+","+b+"])"; in toString()
DMismatchedTreeNodeException.java47 return "MismatchedTreeNodeException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DRecognitionException.java167 public int getUnexpectedType() { in getUnexpectedType() method in RecognitionException
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DNoViableAltException.js17 …return "NoViableAltException('"+this.getUnexpectedType()+"'@["+this.grammarDecisionDescription+"])…
20 … return "NoViableAltException("+this.getUnexpectedType()+"@["+this.grammarDecisionDescription+"])";
DMismatchedNotSetException.js10 this.getUnexpectedType() + "!=" + this.expecting + ")";
DMismatchedSetException.js12 this.getUnexpectedType() + "!=" + this.expecting + ")";
DMismatchedTreeNodeException.js14 this.getUnexpectedType() + "!=" + this.expecting + ")";
DMismatchedRangeExceptions.js17 this.getUnexpectedType()+" not in ["+this.a+","+this.b+"])";
DMismatchedTokenException.js16 this.getUnexpectedType() + "!=" + this.expecting + ")";
DRecognitionException.js168 getUnexpectedType: function() {