Home
last modified time | relevance | path

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

/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/methoditem/
DCommonSuperMethodsTest.kt58 assertEquals(emptyList(), method.superMethods()) in Test no super method()
103 assertEquals(emptyList(), method.superMethods()) in Test no super method from parent class as static()
134 assertEquals(emptyList(), method.superMethods()) in Test no super method from parent class as private()
180 assertEquals(listOf(parentClassMethod), method.superMethods()) in Test single super method from parent class()
237 assertEquals(listOf(grandParentClassMethod), method.superMethods()) in Test single super method from grand parent class()
295 assertEquals(listOf(parentClassMethod), method.superMethods()) in Test single super method from parent and grand parent class()
342 assertEquals(listOf(parentInterfaceMethod), method.superMethods()) in Test single super method from parent interface()
399 assertEquals(listOf(grandParentInterfaceMethod), method.superMethods()) in Test single super method from grand parent interface()
458 assertEquals(listOf(parentInterfaceMethod), method.superMethods()) in Test single super method from parent and grand parent interface()
524 method.superMethods() in Test multiple super methods from parent interfaces()
[all …]
DCommonMethodItemTest.kt150 fun `MethodItem superMethods() on constructor`() { in <lambda>()
190 assertEquals(emptyList(), testConstructor.superMethods()) in <lambda>()
195 fun `MethodItem superMethods() on simple method`() { in <lambda>()
243 assertEquals(listOf(baseFoo), testFoo.superMethods()) in <lambda>()
/tools/metalava/metalava-model/src/main/java/com/android/tools/metalava/model/
DMethodItem.kt43 fun superMethods(): List<MethodItem> in <lambda>() method
49 superMethods: Boolean, in <lambda>()
56 includeSuperClasses = superMethods, in <lambda>()
57 includeInterfaces = superMethods, in <lambda>()
72 val original = superMethods().firstOrNull() ?: return emptySequence() in <lambda>()
74 val superMethods = item.superMethods() in <lambda>() constant
75 superMethods.firstOrNull() in <lambda>()
142 val superMethods = superMethods() in <lambda>() constant
143 for (method in superMethods) { in <lambda>()
149 for (method in superMethods) { in <lambda>()
[all …]
DParameterItem.kt29 superMethods: Boolean, in name()
33 .findCorrespondingItemIn(codebase, superMethods = superMethods, duplicate = duplicate) in name()
DConstructorItem.kt27 superMethods: Boolean,
DPropertyItem.kt44 superMethods: Boolean, in <lambda>()
DPackageItem.kt42 superMethods: Boolean, in <lambda>()
DTypeParameterItem.kt93 superMethods: Boolean,
DFieldItem.kt32 superMethods: Boolean, in <lambda>()
DItem.kt273 superMethods: Boolean = false, in fullyQualifiedDocumentation()
DClassItem.kt210 superMethods: Boolean, in <lambda>()
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/
DCommonModelTest.kt220 barFoo.findCorrespondingItemIn(previouslyReleased, superMethods = true) in test findCorrespondingItemIn does find super methods()
227 barFooParameter.findCorrespondingItemIn(previouslyReleased, superMethods = true) in test findCorrespondingItemIn does find super methods()
250 superMethods = true, in test findCorrespondingItemIn does duplicate super methods()
260 superMethods = true, in test findCorrespondingItemIn does duplicate super methods()
276 superMethods = true, in test findCorrespondingItemIn does duplicate super methods()
DBootstrapSourceModelProviderTest.kt503 fun `150 - advanced superMethods() test on methoditem`() { in 150 - advanced superMethods() test on methoditem()
557 assertEquals(listOf(itf2Mtd1), cls1Mtd1.superMethods()) in 150 - advanced superMethods() test on methoditem()
559 assertEquals(listOf(itf1Mtd2), cls1Mtd2.superMethods()) in 150 - advanced superMethods() test on methoditem()
560 assertEquals(listOf(itf1Mtd1, itf2Mtd1), cls2Mtd1.superMethods()) in 150 - advanced superMethods() test on methoditem()
561 assertEquals(listOf(itf2Mtd1, itf1Mtd1), cls3Mtd1.superMethods()) in 150 - advanced superMethods() test on methoditem()
/tools/metalava/metalava-model-psi/src/main/java/com/android/tools/metalava/model/psi/
DPsiMethodItem.kt122 private var superMethods: List<MethodItem>? = null in <lambda>() variable
124 override fun superMethods(): List<MethodItem> { in <lambda>() method
125 if (superMethods == null) { in <lambda>()
126 superMethods = computeSuperMethods() in <lambda>()
129 return superMethods!! in <lambda>()
DPsiConstructorItem.kt71 override fun superMethods(): List<MethodItem> = emptyList() in isImplicitConstructor() method
/tools/metalava/metalava-model-turbine/src/main/java/com/android/tools/metalava/model/turbine/
DTurbineMethodItem.kt75 override fun superMethods(): List<MethodItem> { in name() method
/tools/metalava/metalava-model-text/src/main/java/com/android/tools/metalava/model/text/
DTextMethodItem.kt99 override fun superMethods(): List<MethodItem> { in isConstructor() method
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DApiPredicate.kt265 for (superMethod in superMethods()) { in Item()
DDefaultAnnotationManager.kt556 item.superMethods().any { methodItem -> methodItem.showability.revertUnstableApi() } in <lambda>()
DApiAnalyzer.kt1370 return superMethods().any { it.documentationContainsDeprecated() } in Item()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/compatibility/
DCompatibilityCheck.kt845 val superMethods = new.superMethods() in added() constant
846 for (superMethod in superMethods) { in added()