Searched refs:reflectedMethod (Results 1 – 2 of 2) sorted by relevance
267 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() argument294 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() argument316 TypeComparator typeComparator = reflectedMethod.isBridge() in matchesSignature()320 String reflectionReturnType = typeToString(reflectedMethod.getGenericReturnType()); in matchesSignature()[all …]
612 Method reflectedMethod) { in areMethodsModifierCompatible() argument620 int reflectionModifiers = reflectedMethod.getModifiers() & ~ignoredMods; in areMethodsModifierCompatible()629 String genericString = reflectedMethod.toGenericString(); in areMethodsModifierCompatible()