Home
last modified time | relevance | path

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

/external/antlr/runtime/Python3/antlr3/
Dexceptions.py177 def getUnexpectedType(self): member in RecognitionException
193 unexpectedType = property(getUnexpectedType)
206 self.getUnexpectedType(), self.expecting
270 self.getUnexpectedType(), self.a, self.b
286 self.getUnexpectedType(), self.expecting
296 self.getUnexpectedType(), self.expecting
362 self.getUnexpectedType(), self.expecting
/external/antlr/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/runtime/Java/src/main/java/org/antlr/runtime/
DNoViableAltException.java52 return "NoViableAltException('"+(char)getUnexpectedType()+"'@["+grammarDecisionDescription+"])"; in toString()
55 return "NoViableAltException("+getUnexpectedType()+"@["+grammarDecisionDescription+"])"; in toString()
DMismatchedNotSetException.java40 return "MismatchedNotSetException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DMismatchedSetException.java43 return "MismatchedSetException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DMismatchedTokenException.java44 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DMismatchedRangeException.java44 return "MismatchedNotSetException("+getUnexpectedType()+" not in ["+a+","+b+"])"; in toString()
DMismatchedTreeNodeException.java47 return "MismatchedTreeNodeException("+getUnexpectedType()+"!="+expecting+")"; in toString()
DRecognitionException.java183 public int getUnexpectedType() { in getUnexpectedType() method in RecognitionException
/external/antlr/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() {