Home
last modified time | relevance | path

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

12345678910>>...17

/aosp_15_r20/external/kotlinpoet/kotlinpoet/src/commonTest/kotlin/com/squareup/kotlinpoet/
H A DTypeVariableNameTest.kt212 val typeVariable = TypeVariableName("E", bounds = emptyArray<TypeName>()) in emptyBoundsShouldDefaultToAnyNullable() constant
226 val typeVariable = TypeVariableName("E") in noBoundsShouldDefaultToAnyNullable() constant
240 val typeVariable = TypeVariableName.get(GenericClass::class.java.typeParameters[0]) in genericClassNoBoundsShouldDefaultToAnyNullable() constant
H A DTypeAliasSpecTest.kt40 @Test fun typeVariable() { in typeVariable() method in com.squareup.kotlinpoet.TypeAliasSpecTest
/aosp_15_r20/external/mockito/src/main/java/org/mockito/internal/util/reflection/
H A 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
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DTypeVariableTest.java35 TypeVariable<Class> typeVariable = typeParameters[0]; in testSimpleTypeVariableOnClass() local
53 TypeVariable<Method> typeVariable = typeParameters[0]; in testSimpleTypeVariableOnMethod() local
71 TypeVariable<?> typeVariable = typeParameters[0]; in testSimpleTypeVariableOnConstructor() local
157 TypeVariable<Class> typeVariable = typeParameters[0]; in testSingleBound() local
169 TypeVariable<Class> typeVariable = typeParameters[0]; in testMultipleBound() local
H A DGenericReflectionTestsBase.java51 TypeVariable<Class> typeVariable = typeParameters[0]; in getTypeParameter() local
H A DBoundedGenericMethodsTests.java74 TypeVariable<?> typeVariable = (TypeVariable<?>) genericParameterType; in parameterType() local
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DOldGenericTypesTest.java67 TypeVariable<Class> typeVariable = getTypeParameter(clazz); in testConstructorGenericType() local
78 TypeVariable<Class> typeVariable = getTypeParameter(clazz); in testStaticMethodGenericType() local
91 TypeVariable<Class> typeVariable = getTypeParameter(clazz); in testHidingMethodGenericType() local
185 TypeVariable<Class> typeVariable = getTypeParameter(clazz); in testInnerClassTest() local
215 TypeVariable<Class> typeVariable = getTypeParameter(clazz); in testException() local
H A DGenericExceptionsTest.java56 TypeVariable typeVariable = getOnlyValue(constructor.getGenericExceptionTypes(), in testConstructorThrowingTypeVariable() local
64 TypeVariable typeVariable = getOnlyValue(method.getGenericExceptionTypes(), in testMethodThrowingTypeVariable() local
72 TypeVariable typeVariable = getOnlyValue(method.getGenericExceptionTypes(), in testThrowingMethodTypeParameter() local
/aosp_15_r20/external/doclava/doclet_adapter/src/main/java/com/google/doclava/javadoc/
H A DTypeVariableImpl.java43 private final javax.lang.model.type.TypeVariable typeVariable; field in TypeVariableImpl
46 protected TypeVariableImpl(javax.lang.model.type.TypeVariable typeVariable, Context context) { in TypeVariableImpl()
51 static TypeVariableImpl create(javax.lang.model.type.TypeVariable typeVariable, in create()
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/reflect/
H A DTypeUtils.java383 …te static boolean containsVariableTypeSameParametrizedTypeBound(final TypeVariable<?> typeVariable, in containsVariableTypeSameParametrizedTypeBound()
674 public static Type[] getImplicitBounds(final TypeVariable<?> typeVariable) { in getImplicitBounds()
1685 public static String toLongString(final TypeVariable<?> typeVariable) { in toLongString()
1776 private static String typeVariableToString(final TypeVariable<?> typeVariable) { in typeVariableToString()
1817 …private static Type unrollVariableAssignments(TypeVariable<?> typeVariable, final Map<TypeVariable… in unrollVariableAssignments() argument
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
H A DReflectionTypeParameter.java39 private TypeVariable typeVariable; field in ReflectionTypeParameter
43 …public ReflectionTypeParameter(TypeVariable typeVariable, boolean declaredOnClass, TypeSolver type… in ReflectionTypeParameter()
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/reflectionmodel/
H A DReflectionTypeParameter.java39 private TypeVariable typeVariable; field in ReflectionTypeParameter
43 …public ReflectionTypeParameter(TypeVariable typeVariable, boolean declaredOnClass, TypeSolver type… in ReflectionTypeParameter()
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
H A DReferenceTypeTest.java580 ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(streamMapR); in testReplaceTypeVariables() local
598 ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(streamMapR); in testReplaceTypeVariablesWithLambdaInBetween() local
/aosp_15_r20/external/gson/gson/src/main/java/com/google/gson/internal/
H A D$Gson$Types.java352 TypeVariable<?> typeVariable = (TypeVariable<?>) toResolve; in resolve() local
473 private static Class<?> declaringClassOf(TypeVariable<?> typeVariable) { in declaringClassOf()
/aosp_15_r20/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/typeitem/
H A DCommonTypeParameterItemTest.kt413 val typeVariable = method.returnType() in Test toType() constant
/aosp_15_r20/external/moshi/moshi/src/main/java/com/squareup/moshi/internal/
H A DUtil.java226 TypeVariable<?> typeVariable = (TypeVariable<?>) toResolve; in resolve() local
372 static @Nullable Class<?> declaringClassOf(TypeVariable<?> typeVariable) { in declaringClassOf()
/aosp_15_r20/external/guava/android/guava/src/com/google/common/reflect/
H A DTypeParameter.java49 final TypeVariable<?> typeVariable; field in TypeParameter
/aosp_15_r20/external/guava/guava/src/com/google/common/reflect/
H A DTypeParameter.java49 final TypeVariable<?> typeVariable; field in TypeParameter
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
H A DReflectionInterfaceDeclarationTest.java76 … ResolvedTypeVariable typeVariable = new ResolvedTypeVariable(list.getTypeParameters().get(0)); in testAllAncestors() local
/aosp_15_r20/external/nullaway/nullaway/src/main/java/com/uber/nullaway/generics/
H A DGenericsChecks.java93 Type typeVariable = baseTypeArgs.get(i); in checkInstantiationForParameterizedTypedTree() local
103 nullableTypeArguments.get(i), baseType, typeVariable, state, analysis); in checkInstantiationForParameterizedTypedTree() local
/aosp_15_r20/external/dagger2/java/dagger/internal/codegen/writing/
H A DOptionalFactories.java144 TypeVariableName typeVariable = TypeVariableName.get("T"); in absentOptionalProviderMethod() local
/aosp_15_r20/external/kotlinpoet/kotlinpoet/src/commonMain/kotlin/com/squareup/kotlinpoet/
H A DCodeWriter.kt198 typeVariables.forEachIndexed { index, typeVariable -> in emitTypeVariables() method
222 for (typeVariable in typeVariables) { in emitWhereBlock() variable
/aosp_15_r20/external/javapoet/src/test/java/com/squareup/javapoet/
H A DAbstractTypesTest.java255 @Test public void typeVariable() throws Exception { in typeVariable() method in AbstractTypesTest
/aosp_15_r20/external/auto/factory/src/main/java/com/google/auto/factory/processor/
H A DFactoryWriter.java243 TypeVariableName typeVariable = TypeVariableName.get("T"); in addCheckNotNullMethod() local
/aosp_15_r20/external/gson/gson/src/main/java/com/google/gson/reflect/
H A DTypeToken.java364 TypeVariable<?> typeVariable = typeVariables[i]; in getParameterized() local

12345678910>>...17