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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java307 List<Type> undetvars = Type.map(that.tvars, fromTypeVarFun);
308 for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail) {
313 hibounds.append(types.subst(t, that.tvars, undetvars));
322 Type qtype1 = types.subst(that.qtype, that.tvars, undetvars);
329 for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail)
334 List<Type> targs = Type.map(undetvars, getInstFun);
339 instantiateAsUninferredVars(undetvars, that.tvars));
344 private List<Type> instantiateAsUninferredVars(List<Type> undetvars, List<Type> tvars) { argument
345 Assert.check(undetvars.length() == tvars.length());
348 for (Type t : undetvars) {
[all...]

Completed in 51 milliseconds