Home
last modified time | relevance | path

Searched refs:unrollVariables (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/reflect/
DTypeUtils.java1798 final Type unrolled = unrollVariables(typeArguments, result[i]); in unrollBounds()
1837 public static Type unrollVariables(Map<TypeVariable<?>, Type> typeArguments, final Type type) { in unrollVariables() method in TypeUtils
1843 return unrollVariables(typeArguments, typeArguments.get(type)); in unrollVariables()
1856 final Type unrolled = unrollVariables(parameterizedTypeArguments, args[i]); in unrollVariables()
DMethodUtils.java831 …final Type childType = TypeUtils.unrollVariables(typeArguments, method.getGenericParameterTypes()[… in getOverrideHierarchy()
832 … final Type parentType = TypeUtils.unrollVariables(typeArguments, m.getGenericParameterTypes()[i]); in getOverrideHierarchy()
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/reflect/
DTypeUtilsTest.java947 final Type unrolled = TypeUtils.unrollVariables(mapping, parameterizedType); in testParameterizeNarrowerTypeArray()