| /room/room-compiler-processing/src/main/java/androidx/room/compiler/processing/ |
| D | DeclarationCollector.kt | 82 val methods = methodSet.toList() in collectAllMethods() constant 84 methods.forEachIndexed { i, methodOne -> in collectAllMethods() 85 methods.subList(i + 1, methods.size).forEach { methodTwo -> in collectAllMethods() 94 methods.filterNot { overridden.contains(it) }.forEach { yield(it) } in collectAllMethods()
|
| /room/room-runtime/api/ |
| D | api_lint.ignore | 7 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method androidx.room.Room… 9 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method androidx.room.Room… 11 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method androidx.room.Room… 13 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method androidx.room.Room… 15 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method androidx.room.Room… 23 Registration methods should have overload that accepts delivery Executor: `addCallback` 25 Registration methods should have overload that accepts delivery Executor: `createFromAsset` 27 Registration methods should have overload that accepts delivery Executor: `createFromFile` 29 … Registration methods should have overload that accepts delivery Executor: `createFromInputStream`
|
| /room/room-compiler-processing/src/test/java/androidx/room/compiler/processing/ |
| D | TopLevelMembersTest.kt | 67 declarations.filterIsInstance<KSFunctionDeclaration>().toList().let { methods -> in <lambda>() method 68 assertWithMessage(pkg).that(methods).hasSize(1) in <lambda>() 69 methods.forEach { method -> in <lambda>()
|
| D | MethodSpecHelperTest.kt | 493 val (target, methods) = invocation.getOverrideTestTargets(ignoreInheritedMethods) in <lambda>() constant 494 methods.forEachIndexed { index, method -> in <lambda>() 513 val (target, methods) = invocation.getOverrideTestTargets(ignoreInheritedMethods) in <lambda>() constant 516 methods in <lambda>() 543 val methods = in <lambda>() constant 550 methods in <lambda>()
|
| D | XTypeParameterElementTest.kt | 225 val methods = foo.getDeclaredMethods() in <lambda>() constant 226 assertThat(methods).hasSize(1) in <lambda>() 228 val method = methods[0] in <lambda>() 283 val methods = foo.getDeclaredMethods() in <lambda>() constant 284 assertThat(methods).hasSize(1) in <lambda>() 286 val method = methods[0] in <lambda>() 335 val methods = foo.getDeclaredMethods() in <lambda>() constant 336 assertThat(methods).hasSize(1) in <lambda>() 338 val method = methods[0] in <lambda>()
|
| D | XProcessingStepTest.kt | 1380 val methods = elements.filterIsInstance<XMethodElement>() in <lambda>() constant 1382 assertThat(methods).hasSize(2) in <lambda>() 1383 assertThat(methods.firstOrNull { it.jvmName == "mainMethod" }).isNotNull() in <lambda>() 1384 assertThat(methods.firstOrNull { it.jvmName == "innerMethod" }).isNotNull() in <lambda>() 1605 val methods = elements.filterIsInstance<XMethodElement>() in <lambda>() constant 1607 assertThat(methods).hasSize(2) in <lambda>() 1608 assertThat(methods.firstOrNull { it.jvmName == "mainMethod" }).isNotNull() in <lambda>() 1609 assertThat(methods.firstOrNull { it.jvmName == "innerMethod" }).isNotNull() in <lambda>()
|
| D | XElementTest.kt | 909 enclosingElement.getDeclaredMethods().let { methods -> in <lambda>() method 910 assertThat(methods.map { it.name }) in <lambda>() 916 methods.forEach { assertThat(it.enclosingElement).isEqualTo(enclosingElement) } in <lambda>() 935 companionObj.getDeclaredMethods().let { methods -> in <lambda>() method 936 methods.forEach { assertThat(it.enclosingElement).isEqualTo(companionObj) } in <lambda>() 939 assertThat(methods.map { it.name }) in <lambda>() 957 assertThat(methods.map { it.name }) in <lambda>()
|
| D | XTypeElementTest.kt | 866 val methods = subject.getDeclaredMethods() in <lambda>() constant 868 .that(methods.map { it.jvmName }) in <lambda>()
|
| /room/room-compiler-processing/src/main/java/androidx/room/compiler/processing/javac/ |
| D | JavacKmAnnotation.kt | 54 val methods = typeElement.getDeclaredMethods() in <lambda>() constant 56 methods.associateWith { method -> in <lambda>()
|
| /room/room-compiler/src/test/kotlin/androidx/room/solver/query/ |
| D | QueryWriterTest.kt | 366 val (owner, methods) = in <lambda>() constant 381 executableElement = methods.first() in <lambda>()
|
| /room/room-compiler/src/test/kotlin/androidx/room/processor/ |
| D | TransactionFunctionProcessorTest.kt | 349 val (owner, methods) = in <lambda>() constant 367 executableElement = methods.first() in <lambda>()
|
| D | DeleteOrUpdateShortcutFunctionProcessorTest.kt | 791 val (owner, methods) = in <lambda>() constant 806 executableElement = methods.first() in <lambda>()
|
| D | QueryFunctionProcessorTest.kt | 1254 val (owner, methods) = in <lambda>() constant 1279 executableElement = methods.first(), in <lambda>() 1324 val (owner, methods) = in <lambda>() constant 1349 executableElement = methods.first(), in <lambda>()
|
| D | InsertOrUpsertShortcutFunctionProcessorTest.kt | 1160 val (owner, methods) = in <lambda>() constant 1175 executableElement = methods.first() in <lambda>()
|
| /room/room-compiler-processing/ |
| D | README.md | 61 It can be used to get methods, fields etc declared in a class declaration. 87 For suspend methods, it will synthesize an additional `Continuation` parameter. 90 XProcessing will synthesize `getter`/`setter` methods for Kotlin properties.
|
| /room/room-compiler-processing/src/test/java/androidx/room/compiler/processing/ksp/ |
| D | KspTypeNamesGoldenTest.kt | 196 val methods = in <lambda>() constant 200 methods in <lambda>()
|
| /room/room-compiler-processing/src/main/java/androidx/room/compiler/processing/ksp/ |
| D | KSTypeKotlinPoetExt.kt | 208 .methods in <lambda>()
|
| /room/room-compiler/src/main/kotlin/androidx/room/processor/ |
| D | DataClassProcessor.kt | 235 val methods = in <lambda>() constant 251 methods.filter { in <lambda>() 256 methods.filter { in <lambda>()
|