Searched defs:coerce (Results 1 - 4 of 4) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java333 Type coerce(Type etype, Type ttype) { method in class:ConstFold
H A DTransTypes.java117 /** Construct an attributed tree to coerce an expression to some erased
123 JCExpression coerce(JCExpression tree, Type target) { method in class:TransTypes
134 * Then, coerce to some given target type unless target type is null.
160 if (target != null) return coerce(tree, target);
248 : make.Return(coerce(call, bridgeType.getReturnType()));
718 tree.selected = coerce(
837 : make.Return(coerce(call, member.erasure(types).getReturnType()));
H A DAttr.java324 public Type coerce(Type etype, Type ttype) { method in class:Attr
325 return cfolder.coerce(etype, ttype);
613 return coerce(itype, type).constValue();
1208 ? cfolder.coerce(condtype.isTrue()?thentype:elsetype, ctype)
2044 owntype = cfolder.coerce(ctype, owntype);
2084 owntype = cfolder.coerce(ctype, owntype);
2122 owntype = cfolder.coerce(exprtype, owntype);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java236 /** Generate code to coerce item to given type code.
237 * @param targetcode The type code to coerce to.
239 Item coerce(int targetcode) { method in class:Items.Item
258 /** Generate code to coerce item to given type.
259 * @param targettype The type to coerce to.
261 Item coerce(Type targettype) { method in class:Items.Item
262 return coerce(Code.typecode(targettype));
416 makeStackItem(syms.intType).coerce(typecode);
605 Item coerce(int targetcode) { method in class:Items.ImmediateItem
642 return super.coerce(targetcod
[all...]

Completed in 83 milliseconds