Searched refs:fitsType (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DIntegerExpression.java51 public boolean fitsType(Environment env, Context ctx, Type t) { method in class:IntegerExpression
56 return super.fitsType(env, ctx, t);
66 return super.fitsType(env, ctx, t);
H A DConditionalExpression.java95 } else if (((tm & TM_CHAR) != 0) && left.fitsType(env, ctx, Type.tChar) && right.fitsType(env, ctx, Type.tChar)) {
97 } else if (((tm & TM_SHORT) != 0) && left.fitsType(env, ctx, Type.tShort) && right.fitsType(env, ctx, Type.tShort)) {
99 } else if (((tm & TM_BYTE) != 0) && left.fitsType(env, ctx, Type.tByte) && right.fitsType(env, ctx, Type.tByte)) {
H A DNode.java79 if (e.fitsType(env, ctx, t)) {
H A DExpression.java168 public boolean fitsType(Environment env, Context ctx, Type t) { method in class:Expression
177 return n.fitsType(env, ctx, t);
188 public boolean fitsType(Environment env, Type t) { method in class:Expression
189 return fitsType(env, (Context) null, t);

Completed in 39 milliseconds