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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java208 List<Type> hibounds = Type.filter(that.hibounds, errorFilter);
210 if (hibounds.isEmpty())
212 else if (hibounds.tail.isEmpty())
213 that.inst = hibounds.head;
215 that.inst = types.glb(hibounds);
221 that.qtype, hibounds);
277 // bounds can cause lobounds that are above hibounds.
278 List<Type> hibounds = Type.filter(that.hibounds, errorFilte
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java516 t.hibounds = t.hibounds.prepend(s);
739 for (List<Type> l = t.hibounds; l.nonEmpty(); l = l.tail) {
783 undetvar.hibounds = undetvar.hibounds.prepend(bound);
790 for (Type t2 : undetvar.hibounds) {
H A DType.java1222 public List<Type> hibounds = List.nil(); field in class:Type.UndetVar

Completed in 71 milliseconds