Home
last modified time | relevance | path

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

/cts/tests/signature/lib/common/src/android/signature/cts/
DReflectionHelper.java267 for (Method reflectedMethod : reflectedMethods) { in findMatchingMethodImpl()
269 if (!method.mName.equals(reflectedMethod.getName())) { in findMatchingMethodImpl()
273 if (matchesSignature(method, reflectedMethod, mismatchReasons)) { in findMatchingMethodImpl()
274 return reflectedMethod; in findMatchingMethodImpl()
292 Method reflectedMethod) { in matches() argument
294 if (!jDiffMethod.mName.equals(reflectedMethod.getName())) { in matches()
299 return matchesSignature(jDiffMethod, reflectedMethod, ignoredReasons); in matches()
311 static boolean matchesSignature(JDiffMethod jDiffMethod, Method reflectedMethod, in matchesSignature() argument
316 TypeComparator typeComparator = reflectedMethod.isBridge() in matchesSignature()
320 String reflectionReturnType = typeToString(reflectedMethod.getGenericReturnType()); in matchesSignature()
[all …]
DApiComplianceChecker.java612 Method reflectedMethod) { in areMethodsModifierCompatible() argument
620 int reflectionModifiers = reflectedMethod.getModifiers() & ~ignoredMods; in areMethodsModifierCompatible()
629 String genericString = reflectedMethod.toGenericString(); in areMethodsModifierCompatible()