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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java281 return isSubtypeUnchecked(t, s, warn);
302 public boolean isSubtypeUnchecked(Type t, Type s) { method in class:Types
303 return isSubtypeUnchecked(t, s, Warner.noWarnings);
308 public boolean isSubtypeUnchecked(Type t, Type s, Warner warn) { method in class:Types
321 return isSubtypeUnchecked(elemtype(t), elemtype(s), warn);
327 return isSubtypeUnchecked(t.getUpperBound(), s, warn);
332 return isSubtypeUnchecked(t, uv.inst, warn);
531 public boolean isSubtypeUnchecked(Type t, List<Type> ts, Warner warn) { method in class:Types
533 if (!isSubtypeUnchecked(t, l.head, warn))
561 isSubtypeUnchecked(t
[all...]

Completed in 38 milliseconds