/external/guice/core/test/com/google/inject/util/ |
D | TypesTest.java | 22 import static com.google.inject.util.Types.subtypeOf; 117 assertEqualsBothWays(getWildcard("wildcardExtends"), subtypeOf(CharSequence.class)); in testWildcardTypes() 118 assertEqualsBothWays(getWildcard("wildcardObject"), subtypeOf(Object.class)); in testWildcardTypes() 121 assertEquals("? extends java.lang.CharSequence", subtypeOf(CharSequence.class).toString()); in testWildcardTypes() 122 assertEquals("?", subtypeOf(Object.class).toString()); in testWildcardTypes() 125 assertEqualWhenReserialized(subtypeOf(CharSequence.class)); in testWildcardTypes() 138 subtypeOf(int.class); in testWildcardBoundsMustNotBePrimitives()
|
/external/javapoet/src/main/java/com/squareup/javapoet/ |
D | WildcardTypeName.java | 79 public static WildcardTypeName subtypeOf(TypeName upperBound) { in subtypeOf() method in WildcardTypeName 83 public static WildcardTypeName subtypeOf(Type upperBound) { in subtypeOf() method in WildcardTypeName 84 return subtypeOf(TypeName.get(upperBound)); in subtypeOf() 111 return subtypeOf(Object.class); in get() 116 return subtypeOf(TypeName.get(extendsBound, typeVariables)); in get()
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
D | TypesTest.java | 185 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()
|
D | TypeTokenTest.java | 456 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 …]
|
D | TypeVisitorTest.java | 57 WildcardType type = Types.subtypeOf(String.class); in testVisitWildcardType()
|
D | TypeResolverTest.java | 114 assertEquals(Types.subtypeOf(String.class), new TypeResolver() in testWhere_parameterizedTypeMapping()
|
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | TypeNameTest.java | 154 assertEqualsHashCodeAndToString(WildcardTypeName.subtypeOf(Object.class), in equalsAndHashCodeWildcardTypeName() 155 WildcardTypeName.subtypeOf(Object.class)); in equalsAndHashCodeWildcardTypeName() 156 assertEqualsHashCodeAndToString(WildcardTypeName.subtypeOf(Serializable.class), in equalsAndHashCodeWildcardTypeName() 157 WildcardTypeName.subtypeOf(Serializable.class)); in equalsAndHashCodeWildcardTypeName()
|
D | AbstractTypesTest.java | 217 WildcardTypeName type = WildcardTypeName.subtypeOf(CharSequence.class); in wildcardExtendsType() 222 WildcardTypeName type = WildcardTypeName.subtypeOf(Object.class); in wildcardExtendsObject()
|
D | AnnotatedTypeNameTest.java | 98 TypeName actual = WildcardTypeName.subtypeOf(type); in annotatedWildcardTypeNameWithExtends()
|
D | TypeSpecTest.java | 85 ClassName.get(List.class), WildcardTypeName.subtypeOf(Object.class)); in interestingTypes() 87 ClassName.get(List.class), WildcardTypeName.subtypeOf(Serializable.class)); in interestingTypes()
|
/external/guice/core/test/com/google/inject/ |
D | TypeLiteralTest.java | 61 TypeLiteral<?> b = TypeLiteral.get(Types.listOf(Types.subtypeOf(CharSequence.class))); in testWithWildcardType() 104 assertEquals(Object.class, TypeLiteral.get(Types.subtypeOf(Runnable.class)).getRawType()); in testTypeLiteralsMustHaveRawTypes()
|
D | TypeLiteralInjectionTest.java | 90 assertEquals(TypeLiteral.get(listOf(Types.subtypeOf(Integer.class))), b.listOfWildcardT); in testInjectTypeLiteralWithClassTypes()
|
D | KeyTest.java | 155 assertNotSerializable(Key.get(Types.listOf(Types.subtypeOf(CharSequence.class)))); in testSerialization()
|
/external/guice/core/src/com/google/inject/util/ |
D | Types.java | 78 public static WildcardType subtypeOf(Type bound) { in subtypeOf() method in Types
|
/external/guava/guava/src/com/google/common/reflect/ |
D | Types.java | 80 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/guice/core/src/com/google/inject/ |
D | TypeLiteral.java | 218 return Types.subtypeOf(upperBound); in resolveType()
|