Home
last modified time | relevance | path

Searched refs:BaseEntityBundle (Results 1 – 12 of 12) sorted by relevance

/room/room-compiler/src/main/kotlin/androidx/room/vo/
DAutoMigration.kt21 import androidx.room.migration.bundle.BaseEntityBundle
62 data class AddedTable(val entityBundle: BaseEntityBundle)
78 val oldVersionEntityBundle: BaseEntityBundle,
79 val newVersionEntityBundle: BaseEntityBundle,
DEntity.kt21 import androidx.room.migration.bundle.BaseEntityBundle in <lambda>()
87 open fun toBundle(): BaseEntityBundle = in <lambda>()
/room/room-migration/src/commonMain/kotlin/androidx/room/migration/bundle/
DDatabaseBundle.kt31 @SerialName("entities") val entities: List<BaseEntityBundle>, in <lambda>()
36 val entitiesByTableName: Map<String, BaseEntityBundle> by lazy { in <lambda>()
67 private class FtsEntityCreateComparator : Comparator<BaseEntityBundle> { in <lambda>()
68 override fun compare(a: BaseEntityBundle, b: BaseEntityBundle): Int { in <lambda>()
DSchemaBundle.kt55 polymorphicDefaultDeserializer(BaseEntityBundle::class) { EntitySerializer } in isSchemaEqual()
60 JsonContentPolymorphicSerializer<BaseEntityBundle>(baseClass = BaseEntityBundle::class) {
63 ): DeserializationStrategy<BaseEntityBundle> = in selectDeserializer()
DBaseEntityBundle.kt26 sealed class BaseEntityBundle { class
DEntityBundle.kt34 ) : BaseEntityBundle(), SchemaEquality<EntityBundle> { in <lambda>()
DFtsEntityBundle.kt40 ) : BaseEntityBundle(), SchemaEquality<FtsEntityBundle> { in <lambda>()
/room/room-compiler/src/main/kotlin/androidx/room/util/
DSchemaDiffer.kt19 import androidx.room.migration.bundle.BaseEntityBundle in <lambda>()
81 private val contentTableToFtsEntities = mutableMapOf<String, MutableList<BaseEntityBundle>>() in <lambda>()
187 private fun detectTableLevelChanges(fromTable: BaseEntityBundle): BaseEntityBundle? { in <lambda>()
266 fromTable: BaseEntityBundle, in <lambda>()
267 toTable: BaseEntityBundle, in <lambda>()
352 fromTable: BaseEntityBundle, in <lambda>()
353 toTable: BaseEntityBundle in <lambda>()
500 toTable: BaseEntityBundle, in <lambda>()
/room/room-compiler/src/main/kotlin/androidx/room/writer/
DAutoMigrationWriter.kt30 import androidx.room.migration.bundle.BaseEntityBundle in <lambda>()
210 oldTable: BaseEntityBundle, in <lambda>()
211 newTable: BaseEntityBundle, in <lambda>()
256 newTable: BaseEntityBundle, in <lambda>()
286 oldEntityBundle: BaseEntityBundle, in <lambda>()
287 newEntityBundle: BaseEntityBundle, in <lambda>()
/room/room-migration/bcv/native/
Dcurrent.txt14BaseEntityBundle>, kotlin.collections/List<androidx.room.migration.bundle/DatabaseViewBundle> = ..…
17 …entities>(): kotlin.collections/List<androidx.room.migration.bundle/BaseEntityBundle> // androidx.…
19 …otlin.collections/Map<kotlin/String, androidx.room.migration.bundle/BaseEntityBundle> // androidx.…
135 …m.migration.bundle/FtsEntityBundle : androidx.room.migration.bundle/BaseEntityBundle, androidx.roo…
303 …room.migration.bundle/EntityBundle : androidx.room.migration.bundle/BaseEntityBundle, androidx.roo…
339 …aled class androidx.room.migration.bundle/BaseEntityBundle { // androidx.room.migration.bundle/Bas…
340 … abstract val createSql // androidx.room.migration.bundle/BaseEntityBundle.createSql|{}createSql[0]
341 … <get-createSql>(): kotlin/String // androidx.room.migration.bundle/BaseEntityBundle.createSql.<ge…
342 abstract val fields // androidx.room.migration.bundle/BaseEntityBundle.fields|{}fields[0]
343 …oom.migration.bundle/FieldBundle> // androidx.room.migration.bundle/BaseEntityBundle.fields.<get-f…
[all …]
D2.7.0-beta01.txt14BaseEntityBundle>, kotlin.collections/List<androidx.room.migration.bundle/DatabaseViewBundle> = ..…
17 …entities>(): kotlin.collections/List<androidx.room.migration.bundle/BaseEntityBundle> // androidx.…
19 …otlin.collections/Map<kotlin/String, androidx.room.migration.bundle/BaseEntityBundle> // androidx.…
135 …m.migration.bundle/FtsEntityBundle : androidx.room.migration.bundle/BaseEntityBundle, androidx.roo…
303 …room.migration.bundle/EntityBundle : androidx.room.migration.bundle/BaseEntityBundle, androidx.roo…
339 …aled class androidx.room.migration.bundle/BaseEntityBundle { // androidx.room.migration.bundle/Bas…
340 … abstract val createSql // androidx.room.migration.bundle/BaseEntityBundle.createSql|{}createSql[0]
341 … <get-createSql>(): kotlin/String // androidx.room.migration.bundle/BaseEntityBundle.createSql.<ge…
342 abstract val fields // androidx.room.migration.bundle/BaseEntityBundle.fields|{}fields[0]
343 …oom.migration.bundle/FieldBundle> // androidx.room.migration.bundle/BaseEntityBundle.fields.<get-f…
[all …]
/room/room-testing/src/commonMain/kotlin/androidx/room/testing/
DBundleUtil.kt23 import androidx.room.migration.bundle.BaseEntityBundle in <lambda>()
91 private fun BaseEntityBundle.toColumnNamesSet(): Set<String> { in toColumnNamesSet() method