Home
last modified time | relevance | path

Searched refs:subtypeOf (Results 1 – 20 of 20) sorted by relevance

/external/guice/core/test/com/google/inject/util/
DTypesTest.java23 import static com.google.inject.util.Types.subtypeOf;
119 assertEqualsBothWays(getWildcard("wildcardExtends"), subtypeOf(CharSequence.class)); in testWildcardTypes()
120 assertEqualsBothWays(getWildcard("wildcardObject"), subtypeOf(Object.class)); in testWildcardTypes()
123 assertEquals("? extends java.lang.CharSequence", subtypeOf(CharSequence.class).toString()); in testWildcardTypes()
124 assertEquals("?", subtypeOf(Object.class).toString()); in testWildcardTypes()
127 assertEqualWhenReserialized(subtypeOf(CharSequence.class)); in testWildcardTypes()
140 subtypeOf(int.class); in testWildcardBoundsMustNotBePrimitives()
/external/javassist/src/main/javassist/
DCtArray.java63 public boolean subtypeOf(CtClass clazz) throws NotFoundException { in subtypeOf() method in CtArray
64 if (super.subtypeOf(clazz)) in subtypeOf()
73 if (intfs[i].subtypeOf(clazz)) in subtypeOf()
77 && getComponentType().subtypeOf(clazz.getComponentType()); in subtypeOf()
DSerialVersionUID.java66 return clazz.subtypeOf(pool.get("java.io.Serializable")); in isSerializable()
DCtClass.java330 public boolean subtypeOf(CtClass clazz) throws NotFoundException { in subtypeOf() method in CtClass
DCtClassType.java297 public boolean subtypeOf(CtClass clazz) throws NotFoundException { in subtypeOf() method in CtClassType
314 if (supername != null && classPool.get(supername).subtypeOf(clazz)) in subtypeOf()
318 if (classPool.get(ifs[i]).subtypeOf(clazz)) in subtypeOf()
/external/guava/guava-tests/test/com/google/common/reflect/
DTypesTest.java185 Type wildcard = Types.subtypeOf(Number.class); in testNewArrayType_upperBoundedWildcard()
186 assertEquals(Types.subtypeOf(Number[].class), Types.newArrayType(wildcard)); in testNewArrayType_upperBoundedWildcard()
232 Types.subtypeOf(Object.class); in testNewWildcardType()
234 Types.subtypeOf(int[][].class); in testNewWildcardType()
253 Types.subtypeOf(int.class); in testNewWildcardType_primitiveTypeBound()
262 Types.subtypeOf(String.class)); in testNewWildcardType_serializable()
264 Types.subtypeOf(Object.class)); in testNewWildcardType_serializable()
DTypeTokenTest.java456 TypeToken.of(Types.subtypeOf(Object.class)).getGenericSuperclass()); in testGetGenericSuperclass_wildcard_boundIsClass()
458 TypeToken.of(Types.subtypeOf(Object[].class)).getGenericSuperclass()); in testGetGenericSuperclass_wildcard_boundIsClass()
462 assertNull(TypeToken.of(Types.subtypeOf(CharSequence.class)).getGenericSuperclass()); in testGetGenericSuperclass_wildcard_boundIsInterface()
464 TypeToken.of(Types.subtypeOf(CharSequence[].class)).getGenericSuperclass()); in testGetGenericSuperclass_wildcard_boundIsInterface()
524 assertThat(TypeToken.of(Types.subtypeOf(Object.class)).getGenericInterfaces()).isEmpty(); in testGetGenericInterfaces_wildcard_boundIsClass()
525 assertThat(TypeToken.of(Types.subtypeOf(Object[].class)).getGenericInterfaces()).isEmpty(); in testGetGenericInterfaces_wildcard_boundIsClass()
530 makeUnmodifiable(TypeToken.of(Types.subtypeOf(interfaceType.getType())).getGenericInterfaces()) in testGetGenericInterfaces_wildcard_boundIsInterface()
601 Type wildcardType = Types.subtypeOf(Object[].class); in testAssignableWildcardBoundedByArrayToArrayClass()
609 TypeToken<?> upperBounded = TypeToken.of(Types.subtypeOf(Object[].class)); in testAssignableArrayClassToBoundedWildcard()
621 Type wildcardType = Types.subtypeOf(int[].class); in testAssignableWildcardBoundedByIntArrayToArrayClass()
[all …]
DTypeVisitorTest.java57 WildcardType type = Types.subtypeOf(String.class); in testVisitWildcardType()
DTypeResolverTest.java114 assertEquals(Types.subtypeOf(String.class), new TypeResolver() in testWhere_parameterizedTypeMapping()
/external/guice/core/test/com/google/inject/
DTypeLiteralTest.java66 TypeLiteral<?> b = TypeLiteral.get(Types.listOf(Types.subtypeOf(CharSequence.class))); in testWithWildcardType()
108 TypeLiteral.get(Types.subtypeOf(Runnable.class)); in testTypeLiteralsMustHaveRawTypes()
DTypeLiteralInjectionTest.java83 assertEquals(TypeLiteral.get(listOf(Types.subtypeOf(Integer.class))), b.listOfWildcardT); in testInjectTypeLiteralWithClassTypes()
DKeyTest.java142 assertNotSerializable(Key.get(Types.listOf(Types.subtypeOf(CharSequence.class)))); in testSerialization()
/external/guice/core/src/com/google/inject/util/
DTypes.java80 public static WildcardType subtypeOf(Type bound) { in subtypeOf() method in Types
/external/guava/guava/src/com/google/common/reflect/
DTypes.java80 return subtypeOf(newArrayType(upperBounds[0])); in newArrayType()
165 @VisibleForTesting static WildcardType subtypeOf(Type upperBound) { in subtypeOf() method in Types
225 return subtypeOf(componentType); in subtypeOfComponentType()
/external/javassist/src/main/javassist/convert/
DTransformCall.java90 if (clazz.subtypeOf(declClazz)) in matchClass()
/external/guice/core/src/com/google/inject/
DTypeLiteral.java237 return Types.subtypeOf(upperBound); in resolveType()
/external/javassist/src/main/javassist/tools/reflect/
DReflection.java247 boolean addMeta = !clazz.subtypeOf(mlevel); in modifyClassfile()
/external/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java274 if (cache2.subtypeOf(cache)) { in update()
/external/javassist/src/main/javassist/compiler/
DMemberResolver.java247 if (clazz.subtypeOf(lookupClassByJvmName(cname))) in compareSignature()
/external/javassist/src/main/javassist/bytecode/analysis/
DType.java267 return type.clazz.subtypeOf(clazz); in isAssignableFrom()