Home
last modified time | relevance | path

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

/tools/metalava/metalava-model/src/main/java/com/android/tools/metalava/model/
DMethodItem.kt268 superMethod: MethodItem, in <lambda>()
276 superMethod.returnType(), in <lambda>()
284 method.effectivelyDeprecated != superMethod.effectivelyDeprecated && in <lambda>()
292 if (!method.modifiers.equivalentTo(superMethod.modifiers)) { in <lambda>()
297 val parameterList2 = superMethod.parameters() in <lambda>()
317 val throwsList2 = superMethod.throwsTypes() in <lambda>()
545 it.firstOrNull { superMethod -> in <lambda>() method
546 superMethod.containingClass().isClass() && in <lambda>()
547 !superMethod.containingClass().isJavaLangObject() in <lambda>()
561 it.filter { superMethod -> superMethod.containingClass().isInterface() } in <lambda>() method
[all …]
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DApiPredicate.kt265 for (superMethod in superMethods()) { in Item() variable
266 val superMethodMembership = superMethod.apiMembership() in Item()
DComparisonVisitor.kt332 val superMethod = newParent.findPredicateMethodWithSuper(old, filter) in pop() constant
334 if (superMethod != null && (filter == null || filter.test(superMethod))) { in pop()
335 superMethod.duplicate(newParent) in pop()
DApiAnalyzer.kt461 for (superMethod in candidates) { in <lambda>() constant
462 if (parameterCount != superMethod.parameters().count()) { in <lambda>()
465 if (method.matches(superMethod)) { in <lambda>()
500 for (superMethod in candidate.allSuperMethods()) { in <lambda>() method
501 methods.remove(superMethod) in <lambda>()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/compatibility/
DCompatibilityCheck.kt846 for (superMethod in superMethods) { in added() constant
847 if (superMethod.isFromClassPath()) { in added()