Home
last modified time | relevance | path

Searched defs:typeVariable (Results 1 – 16 of 16) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DGenericMetadataSupport.java134 private void registerTypeVariableIfNotPresent(TypeVariable<?> typeVariable) { in registerTypeVariableIfNotPresent()
220 TypeVariable<?> typeVariable = (TypeVariable<?>) type; in getActualTypeArgumentFor() local
381 private final TypeVariable<?> typeVariable; field in GenericMetadataSupport.TypeVariableReturnType
385 …pe(GenericMetadataSupport source, TypeVariable<?>[] typeParameters, TypeVariable<?> typeVariable) { in TypeVariableReturnType()
547 private final TypeVariable<?> typeVariable; field in GenericMetadataSupport.TypeVarBoundedType
549 public TypeVarBoundedType(TypeVariable<?> typeVariable) { in TypeVarBoundedType()
592 public TypeVariable<?> typeVariable() { in typeVariable() method in GenericMetadataSupport.TypeVarBoundedType
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionTypeParameter.java39 private TypeVariable typeVariable; field in ReflectionTypeParameter
43 …public ReflectionTypeParameter(TypeVariable typeVariable, boolean declaredOnClass, TypeSolver type… in ReflectionTypeParameter()
/external/guava/guava/src/com/google/common/reflect/
DTypeParameter.java44 final TypeVariable<?> typeVariable; field in TypeParameter
DTypeResolver.java107 @Override void visitTypeVariable(TypeVariable<?> typeVariable) { in populateTypeMappings()
DTypes.java329 TypeVariable<D> typeVariable = Reflection.newProxy( in newTypeVariableImpl() local
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionInterfaceDeclarationTest.java79 … ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(list.getTypeParameters().get(0)); in testAllAncestors() local
DReflectionClassDeclarationTest.java293 …ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(arraylist.getTypeParameters().get(0)); in testAllAncestors() local
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DInterfaceWriter.java35 public void addTypeVariable(TypeVariableName typeVariable) { in addTypeVariable()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
DReferenceTypeTest.java572 ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(streamMapR); in testReplaceTypeVariables() local
590 ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(streamMapR); in testReplaceTypeVariablesWithLambdaInBetween() local
/external/javapoet/src/test/java/com/squareup/javapoet/
DAbstractTypesTest.java255 @Test public void typeVariable() throws Exception { in typeVariable() method in AbstractTypesTest
DTypeSpecTest.java1001 TypeVariableName typeVariable = TypeVariableName.get("T", Comparator.class, Serializable.class); in intersectionType() local
/external/guava/guava-tests/test/com/google/common/reflect/
DTypesTest.java337 TypeVariable<D> typeVariable, Type... bounds) { in withBounds()
/external/guice/core/src/com/google/inject/internal/
DMoreTypes.java346 private static Class<?> declaringClassOf(TypeVariable typeVariable) { in declaringClassOf()
/external/javapoet/src/main/java/com/squareup/javapoet/
DMethodSpec.java355 public Builder addTypeVariable(TypeVariableName typeVariable) { in addTypeVariable()
DTypeSpec.java469 public Builder addTypeVariable(TypeVariableName typeVariable) { in addTypeVariable()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/
DMethodResolutionLogic.java220 …private static boolean matchTypeVariable(ResolvedTypeVariable typeVariable, ResolvedType type, Map… in matchTypeVariable()