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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java224 private boolean isSubClass(Type t, final List<Type> ts) { method in class:Infer
231 if (!isSubClass(bound, List.of(s.baseType())))
238 if (!t.tsym.isSubClass(s.baseType().tsym, types))
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java315 public boolean isSubClass(Symbol base, Types types) { method in class:Symbol
316 throw new AssertionError("isSubClass " + this);
325 clazz.isSubClass(owner, types) &&
493 public boolean isSubClass(Symbol base, Types types) { return other.isSubClass(base, types); } method in class:Symbol.DelegatedSymbol
801 public boolean isSubClass(Symbol base, Types types) { method in class:Symbol.ClassSymbol
809 if (is.head.tsym.isSubClass(base, types)) return true;

Completed in 214 milliseconds