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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java1325 public Type asSub(Symbol sym) { return this; } method in class:Type.ErrorType
H A DTypes.java202 // <editor-fold defaultstate="collapsed" desc="asSub">
214 public Type asSub(Type t, Symbol sym) { method in class:Types
215 return asSub.visit(t, sym);
218 private final SimpleVisitor<Type,Symbol> asSub = new SimpleVisitor<Type,Symbol>() { field in class:Types
1059 Type lowSub = asSub(bLow, aLow.tsym);
1060 Type highSub = (lowSub == null) ? null : asSub(bHigh, aHigh.tsym);
1067 lowSub = asSub(bLow, aLow.tsym);
1068 highSub = (lowSub == null) ? null : asSub(bHigh, aHigh.tsym);
3372 Type subFrom = asSub(from, to.tsym);

Completed in 178 milliseconds