Searched refs:explicitCast (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryEqualityExpression.java54 if (env.explicitCast(left.type, right.type) ||
55 env.explicitCast(right.type, left.type)) {
H A DNode.java83 if (env.explicitCast(e.type, t)) {
H A DCastExpression.java66 if (env.explicitCast(right.type, type)) {
H A DInstanceOfExpression.java65 if (!env.explicitCast(left.type, right.type)) {
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DEnvironment.java712 public boolean explicitCast(Type from, Type to) throws ClassNotFound { method in class:Environment
755 return explicitCast(t1, t2);
H A DClassDefinition.java599 * method is used by Environment.explicitCast() to determine if a
1883 } else if (haveMatch[i] <= 2 && env.explicitCast(at, ft)) {

Completed in 341 milliseconds