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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DPrinter.java71 protected abstract String capturedVarId(CapturedType t, Locale locale);
88 protected String capturedVarId(CapturedType t, Locale locale) {
146 public String visitCapturedType(CapturedType t, Locale locale) {
H A DType.java1012 * Subtypes, such as CapturedType, may provide a different value.
1057 * both upper and lower bound. CapturedType extends TypeVar with
1060 public static class CapturedType extends TypeVar { class in class:Type
1064 public CapturedType(Name name, method in class:Type.CapturedType
1370 R visitCapturedType(CapturedType t, S s);
H A DTypes.java131 public Type visitCapturedType(CapturedType t, Void ignored) {
158 public Type visitCapturedType(CapturedType t, Void ignored) {
922 return isSameWildcard(t, ((CapturedType)s).wildcard);
3243 CapturedType Si = (CapturedType)currentS.head;
3283 result.append(new CapturedType(capturedName,
3588 public Type visitCapturedType(CapturedType t, Void s) {
3725 public R visitCapturedType(CapturedType t, S s) { return visitType(t, s); }
3768 public R visitCapturedType(CapturedType t, S s) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractDiagnosticFormatter.java45 import com.sun.tools.javac.code.Type.CapturedType;
498 protected String capturedVarId(CapturedType t, Locale locale) {
502 public String visitCapturedType(CapturedType t, Locale locale) {
H A DRichDiagnosticFormatter.java334 public String capturedVarId(CapturedType t, Locale locale) {
347 public String visitCapturedType(CapturedType t, Locale locale) {
493 public Void visitCapturedType(CapturedType t, Void ignored) {
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java321 public CapturedType CapturedVariable(Type upper, Type lower) {
322 return new CapturedType(syntheticName(), predef.noSymbol, upper, lower, null);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java350 Type newArg = new CapturedType(t.tsym.name, t.tsym, uv.inst, syms.botType, null);
356 CapturedType ct = (CapturedType)t;
H A DCheck.java845 public Boolean visitCapturedType(CapturedType t, Void s) {

Completed in 64 milliseconds