Searched refs:lub (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2782 m = new WildcardType(lub(upperBound(act1.head),
2841 * Return the least upper bound of pair of types. if the lub does
2844 public Type lub(Type t1, Type t2) { method in class:Types
2845 return lub(List.of(t1, t2));
2849 * Return the least upper bound (lub) of set of types. If the lub
2852 public Type lub(List<Type> ts) { method in class:Types
2884 // calculate lub(A[], B[])
2894 // lub(int[], B[]) is Cloneable & Serializable
2899 // lub(in
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java259 /** Instantiate undetermined type variable to the lub of all its lower bounds.
270 that.inst = types.lub(lobounds);
H A DAttr.java1276 // lub(thentype,elsetype). This cannot fail, as it will
1278 return types.lub(thentype.baseType(), elsetype.baseType());
2969 Type t = check(tree, types.lub(multicatchTypes.toList()), TYP, pkind, pt);

Completed in 50 milliseconds