Home
last modified time | relevance | path

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

/cts/tests/signature/lib/android/src/android/signature/cts/
DDexMemberChecker.java198 private static boolean hasMatchingMethod_Reflection(Class<?> klass, DexMethod dexMethod) in hasMatchingMethod_Reflection() argument
202 Class<?>[] parameterClasses = dexMethod.getJavaParameterClasses(); in hasMatchingMethod_Reflection()
203 Class<?> returnClass = DexMember.typeToClass(dexMethod.getDexType()); in hasMatchingMethod_Reflection()
205 if (dexMethod.isConstructor()) { in hasMatchingMethod_Reflection()
213 } else if (!dexMethod.isStaticConstructor()) { in hasMatchingMethod_Reflection()
214 List<String> methodParams = dexMethod.getJavaParameterTypes(); in hasMatchingMethod_Reflection()
215 String methodReturnType = dexMethod.getJavaType(); in hasMatchingMethod_Reflection()
220 if (method.getName().equals(dexMethod.getName()) in hasMatchingMethod_Reflection()
230 if (method.getName().equals(dexMethod.getName()) in hasMatchingMethod_Reflection()
239 Method m = klass.getDeclaredMethod(dexMethod.getName(), parameterClasses); in hasMatchingMethod_Reflection()
[all …]