Home
last modified time | relevance | path

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

/tools/metalava/metalava/src/test/java/com/android/tools/metalava/
DShowForStubPurposesAnnotationTest.kt560 public class PublicSubClass extends PublicClass {
602 public class ModuleClassExtendingPublic extends test.pkg.PublicSubClass { in Complecated case - SystemApi + ModuleApi()
614 public class PublicSubClass extends test.pkg.PublicClass { in Complecated case - SystemApi + ModuleApi()
643 public class PublicSubClass extends test.pkg.PublicClass { in Complecated case - SystemApi only()
669 public class ModuleClassExtendingPublic extends test.pkg.PublicSubClass { in Hierarchy test - Module API only()
697 public class ModuleClassExtendingPublic extends PublicSubClass {
DJDiffXmlTest.kt632 fun `Interface extends`() { in Interface extends()
DApiFromTextTest.kt159 fun `Multiple extends`() { in Multiple extends()
DApiFileTest.kt3332 fun `Test whether partial or total ordering - sort-whole-extends-list=yes`() { in Test whether partial or total ordering - sort-whole-extends-list=yes()
3458 fun `Extend from multiple interfaces - sort-whole-extends-list=yes`() { in Extend from multiple interfaces - sort-whole-extends-list=yes()
DSignatureInputOutputTest.kt517 fun `Type-use annotations in implements and extends section`() { in <lambda>()
/tools/metalava/
DFORMAT.md166 public class TimeUnit extends java.lang.Enum { ... }
175 public interface List<E> extends java.util.Collection<E> { ... }
197 public interface List<E> extends java.util.Collection<E> { ... }
205 public <X extends Throwable> T orElseThrow(Supplier<? extends X> exceptionSupplier) throws X
212 …method public <X extends java.lang.Throwable> T orElseThrow(java.util.function.Supplier<? extends
220 …method public <X extends java.lang.Throwable> T orElseThrow(java.util.function.Supplier<? extends
348 Consider a scenario where a public class extends a hidden class, and that hidden
357 this happens is that StringBuilder is a public class which extends hidden class
367 public static final class CursorJoiner.Result extends java.lang.Enum {
421 In "extends" lists, the signature file can list a comma separated list of
[all …]
DREADME.md115 instead of "abstract class extends java.lang.Enum", annotations as
116 "@interface" instead of "abstract class extends java.lang.Annotation", sorts
117 modifiers in the canonical modifier order, using "extends" instead of
452 annotations as migrated. To do this, it just extends `ComparisonVisitor`,
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/methoditem/
DCommonMethodItemTest.kt282 fun `Test throws method type parameter extends Throwable`() { in <lambda>()
349 assertFalse(throwsType.erasedClass!!.extends(JAVA_LANG_THROWABLE)) in <lambda>()
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/typeitem/
DCommonTypeParameterItemTest.kt28 fun `Test typeBounds no extends`() { in Test typeBounds no extends()
63 fun `Test typeBounds extends Comparable`() { in Test typeBounds extends Comparable()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DKotlinInteropChecks.kt110 !(exception.extends("java.lang.RuntimeException") || in <lambda>()
111 exception.extends("java.lang.Error")) in <lambda>()
/tools/metalava/metalava-model/src/main/java/com/android/tools/metalava/model/
DClassItem.kt114 fun extends(qualifiedName: String): Boolean { in <lambda>() method
120 return superClass?.extends(qualifiedName) in <lambda>()
151 extends(qualifiedName) || implements(qualifiedName) in <lambda>()
DMethodItem.kt86 if (throwableClass.extends(qualifiedName)) { in <lambda>()
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/classitem/
DCommonClassItemTest.kt171 fun `Test access type parameter of outer class in extends type`() { in Test access type parameter of outer class in extends type()
293 fun `Test interface no extends list`() { in Test interface no extends list()
333 fun `Test interface extends list`() { in Test interface extends list()
/tools/metalava/metalava-model-text/src/test/resources/com/android/tools/metalava/model/text/core/api/
D1.12.0-beta01.txt27 public class ActivityCompat extends androidx.core.content.ContextCompat {
38 …method public static <T extends android.view.View> T requireViewById(android.app.Activity, @IdRes …
88 @RequiresApi(28) public class AppComponentFactory extends android.app.AppComponentFactory {
168 @Deprecated public abstract class JobIntentService extends android.app.Service {
477 …public static class NotificationCompat.BigPictureStyle extends androidx.core.app.NotificationCompa…
490 …public static class NotificationCompat.BigTextStyle extends androidx.core.app.NotificationCompat.S…
608 …public static class NotificationCompat.CallStyle extends androidx.core.app.NotificationCompat.Styl…
657 …public static class NotificationCompat.DecoratedCustomViewStyle extends androidx.core.app.Notifica…
665 …public static class NotificationCompat.InboxStyle extends androidx.core.app.NotificationCompat.Sty…
673 …public static class NotificationCompat.MessagingStyle extends androidx.core.app.NotificationCompat…
[all …]
/tools/metalava/metalava-model-text/src/test/java/com/android/tools/metalava/model/text/
DTextTypeParserCacheTest.kt325 fun `Test caching of wildcard extends bounds`() { in <lambda>()
/tools/metalava/metalava-model-psi/src/main/java/com/android/tools/metalava/model/psi/
DPsiMethodItem.kt190 if (exceptionClass.extends(qualifiedName)) { in <lambda>()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/compatibility/
DCompatibilityCheck.kt352 if (!new.extends(oldSuperClassName)) { in compare()