Home
last modified time | relevance | path

Searched refs:kotlinLikeDescription (Results 1 – 6 of 6) sorted by relevance

/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/methoditem/
DCommonSuspendMethodTest.kt40 assertThat(method.kotlinLikeDescription()) in Test suspend top level fun with nullable return type()
59 assertThat(method.kotlinLikeDescription()) in Test suspend top level fun with non-nullable return type()
80 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with nullable return type()
101 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with non-nullable return type()
122 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with primitive nullable return type()
143 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with primitive return type()
162 assertThat(method.kotlinLikeDescription()) in Test suspend inline fun with reified type()
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/classitem/
DCommonDataClassTest.kt80 .map { it.kotlinLikeDescription() } in Test data class methods and constructors()
112 assertThat(constructor.kotlinLikeDescription()) in Test data class constructor()
127 assertThat(method.kotlinLikeDescription()) in Test data class copy method()
142 assertThat(method.kotlinLikeDescription()).isEqualTo("fun getOpt(): java.lang.String?") in Test data class getter method()
154 assertThat(method.kotlinLikeDescription()) in Test data class setter method()
176 .map { it.kotlinLikeDescription() }) in Test generic data class all members()
DCommonClassItemTest.kt1313 assertEquals("fun foo(): void", inheritedMethod.kotlinLikeDescription()) in Test inheritMethodFromNonApiAncestor without type substitutions()
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/propertyitem/
DCommonPropertyItemTest.kt223 assertThat(getter.kotlinLikeDescription()) in Test abstract property of non-null string()
248 assertThat(getter.kotlinLikeDescription()) in Test abstract property of nullable string()
274 assertThat(getter.kotlinLikeDescription()) in Test abstract property of list of non-null string()
300 assertThat(getter.kotlinLikeDescription()) in Test abstract property of list of nullable string()
326 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of non-null string()
359 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of nullable string()
393 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of list of non-null string()
427 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of list of nullable string()
461 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test mutable non-null generic property overriding property exposing public setter()
495 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test mutable nullable generic property overriding property exposing public setter()
[all …]
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/typeitem/
DCommonTypeAliasTest.kt45 assertThat(method.kotlinLikeDescription()) in Test typealias of generic type()
/tools/metalava/metalava-model/src/testFixtures/java/com/android/tools/metalava/model/
DAssertions.kt127 fun MethodItem.kotlinLikeDescription(): String = buildString { in <lambda>() method