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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DTypeModeler.java107 return isSubtype(subType, superType);
119 if (isSubtype(typeDecl, defHolder)) {
160 public static boolean isSubtype(TypeDeclaration d1, TypeDeclaration d2) { method in class:TypeModeler
176 if (isSubtype(superIntf.getDeclaration(), d2)) {
178 } else if (superClassDecl != null && isSubtype(superClassDecl, d2)) {
H A DWebServiceAP.java340 return isSubtype(typeDecl, exceptionDecl);
344 return isSubtype(typeDecl, remoteExceptionDecl);
347 if(!isSubtype(apEnv,typeDecl,exceptionDecl))
349 if(isSubtype(apEnv,typeDecl,runtimeExceptionDecl) || isSubtype(apEnv,typeDecl,remoteExceptionDecl))
355 return isSubtype(typeDecl, remoteDecl);
358 public static boolean isSubtype(AnnotationProcessorEnvironment env, TypeDeclaration d1, TypeDeclaration d2) { method in class:WebServiceAP
360 return typeUtils.isSubtype(typeUtils.getDeclaredType(d1),typeUtils.getDeclaredType(d2));
363 public static boolean isSubtype(TypeDeclaration d1, TypeDeclaration d2) { method in class:WebServiceAP
381 if (superIntf != null && isSubtype(superInt
[all...]
H A DMakeSafeTypeVisitor.java69 if (TypeModeler.isSubtype(type.getDeclaration(), collectionDecl) ||
70 TypeModeler.isSubtype(type.getDeclaration(), mapDecl)) {
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DTypes.java60 boolean isSubtype(TypeMirror t1, TypeMirror t2); method in interface:Types
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DTypes.java86 boolean isSubtype(TypeMirror t1, TypeMirror t2); method in interface:Types
/openjdk7/langtools/test/tools/javac/processing/model/util/
H A DTypesBadArg.java55 types.isSubtype(javaLang, javaLang);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java239 if (!isSubtype(res, t))
285 ? isSubtype(boxedClass(t).type, s)
286 : isSubtype(unboxedType(t), s);
298 // <editor-fold defaultstate="collapsed" desc="isSubtype">
323 } else if (isSubtype(t, s)) {
371 final public boolean isSubtype(Type t, Type s) { method in class:Types
372 return isSubtype(t, s, true);
375 return isSubtype(t, s, false);
377 public boolean isSubtype(Type t, Type s, boolean capture) { method in class:Types
386 if (!isSubtype(
399 private TypeRelation isSubtype = new TypeRelation() field in class:Types
[all...]
H A DSymbol.java567 return types.isSubtype(this.type, that.type);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java73 public boolean isSubtype(TypeMirror t1, TypeMirror t2) { method in class:TypesImpl
74 return env.jctypes.isSubtype(((TypeMirrorImpl) t1).type,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java90 public boolean isSubtype(TypeMirror t1, TypeMirror t2) { method in class:JavacTypes
93 return types.isSubtype((Type) t1, (Type) t2);
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java96 if (types.isSubtype(s, t) != expected) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java1250 if (types.isSubtype(thenUnboxed, candidate) &&
1251 types.isSubtype(elseUnboxed, candidate))
1264 if (types.isSubtype(thentype, elsetype))
1266 if (types.isSubtype(elsetype, thentype))
2680 if (v.owner != enclClass && !types.isSubtype(enclClass.type, v.owner.type))
2843 && types.isSubtype(actual, types.supertype(formal))
2948 boolean sub = types.isSubtype(ctype, t);
2949 boolean sup = types.isSubtype(t, ctype);
3238 if (!c.type.allparams().isEmpty() && types.isSubtype(c.type, syms.throwableType))
3288 return types.isSubtype(
[all...]
H A DCheck.java530 return types.isSubtype(a, bound);
1188 if (types.isSubtype(t, l.head)) return true;
1197 if (types.isSubtype(t, l.head) || types.isSubtype(l.head, t)) return true;
1215 if (types.isSubtype(ts.head, t)) return ts1;
H A DInfer.java323 if (!types.isSubtype(qtype1,
H A DResolve.java870 if (types.isSubtype(rt1, rt2)) {
872 } else if (types.isSubtype(rt2, rt1)) {
H A DLower.java2895 if (!types.isSubtype(tree.type, unboxedTarget)) //e.g. Character c = 89;
2942 if (!types.isSubtype(unboxedType, primitive))
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DClassDocImpl.java1205 return env.types.isSubtype(type, env.syms.serializableType);
1218 return env.types.isSubtype(type, env.externalizableSym.type);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java1720 Assert.check(types.isSubtype(types.erasure(old),
1754 types.isSubtype(t, tother) ? tother :
1755 types.isSubtype(tother, t) ? t :
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/model/nav/
H A DAPTNavigator.java198 return env.getTypeUtils().isSubtype(sub,sup);

Completed in 115 milliseconds