Home
last modified time | relevance | path

Searched refs:PrimaryKeyBundle (Results 1 – 25 of 25) sorted by relevance

/room/room-migration/src/commonTest/kotlin/androidx/room/migration/bundle/
DPrimaryKeyBundleTest.kt25 val bundle = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("foo", "bar")) in schemaEquality_same_equal()
26 val other = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("foo", "bar")) in schemaEquality_same_equal()
32 val bundle = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("foo", "bar")) in schemaEquality_diffAutoGen_notEqual()
33 val other = PrimaryKeyBundle(isAutoGenerate = false, columnNames = listOf("foo", "bar")) in schemaEquality_diffAutoGen_notEqual()
39 val bundle = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("foo", "baz")) in schemaEquality_diffColumns_notEqual()
40 val other = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("foo", "bar")) in schemaEquality_diffColumns_notEqual()
46 val bundle = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("foo", "bar")) in schemaEquality_diffColumnOrder_notEqual()
47 val other = PrimaryKeyBundle(isAutoGenerate = true, columnNames = listOf("bar", "foo")) in schemaEquality_diffColumnOrder_notEqual()
DEntityBundleTest.kt30 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_same_equal()
40 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_same_equal()
55 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_reorderedFields_equal()
65 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_reorderedFields_equal()
80 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_diffFields_notEqual()
90 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_diffFields_notEqual()
105 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_reorderedForeignKeys_equal()
116 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_reorderedForeignKeys_equal()
132 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_diffForeignKeys_notEqual()
142 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_diffForeignKeys_notEqual()
[all …]
DDatabaseBundleTest.kt31 primaryKey = PrimaryKeyBundle(false, listOf("foo1")), in buildCreateQueries_noFts()
40 primaryKey = PrimaryKeyBundle(false, listOf("foo2")), in buildCreateQueries_noFts()
63 primaryKey = PrimaryKeyBundle(false, listOf("foo1")), in buildCreateQueries_withFts()
72 primaryKey = PrimaryKeyBundle(false, listOf("foo2")), in buildCreateQueries_withFts()
82 primaryKey = PrimaryKeyBundle(false, listOf("foo3")), in buildCreateQueries_withFts()
105 primaryKey = PrimaryKeyBundle(false, listOf("foo1")), in buildCreateQueries_withExternalContentFts()
114 primaryKey = PrimaryKeyBundle(false, listOf("foo2")), in buildCreateQueries_withExternalContentFts()
124 primaryKey = PrimaryKeyBundle(false, listOf("foo3")), in buildCreateQueries_withExternalContentFts()
147 primaryKey = PrimaryKeyBundle(false, listOf("foo")), in schemaEquality_missingView_notEqual()
/room/room-compiler/src/test/kotlin/androidx/room/util/
DSchemaDifferTest.kt25 import androidx.room.migration.bundle.PrimaryKeyBundle in <lambda>()
290 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
317 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
366 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
379 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
407 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
420 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
446 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
474 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
487 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
[all …]
/room/room-compiler/src/main/kotlin/androidx/room/vo/
DPrimaryKey.kt19 import androidx.room.migration.bundle.PrimaryKeyBundle
35 fun toBundle(): PrimaryKeyBundle = PrimaryKeyBundle(autoGenerateId, columnNames)
/room/room-migration/src/commonMain/kotlin/androidx/room/migration/bundle/
DPrimaryKeyBundle.kt26 class PrimaryKeyBundle( class
29 ) : SchemaEquality<PrimaryKeyBundle> {
31 override fun isSchemaEqual(other: PrimaryKeyBundle): Boolean { in isSchemaEqual()
DBaseEntityBundle.kt30 @SerialName("primaryKey") abstract val primaryKey: PrimaryKeyBundle
DEntityBundle.kt31 @SerialName("primaryKey") override val primaryKey: PrimaryKeyBundle, in <lambda>()
DFtsEntityBundle.kt34 @SerialName("primaryKey") override val primaryKey: PrimaryKeyBundle, in <lambda>()
/room/room-compiler/src/test/kotlin/androidx/room/processor/
DAutoMigrationProcessorTest.kt24 import androidx.room.migration.bundle.PrimaryKeyBundle in <lambda>()
168 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
194 PrimaryKeyBundle(false, mutableListOf("id")), in <lambda>()
/room/room-migration/api/
Drestricted_2.1.0-beta02.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
66 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
87 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
88 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
91 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.1.0-beta01.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
66 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
87 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
88 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
91 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.3.0-beta02.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
89 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
90 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
93 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.2.0-beta01.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
89 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
90 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
93 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.3.0-beta01.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
89 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
90 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
93 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.4.0-beta02.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
92 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
93 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
96 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.4.0-beta03.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
92 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
93 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
96 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.4.0-beta01.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
92 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
93 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
96 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.3.0-beta03.txt30 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, java.util.L…
40 method public androidx.room.migration.bundle.PrimaryKeyBundle! getPrimaryKey();
68 …oom.migration.bundle.FieldBundle!>!, androidx.room.migration.bundle.PrimaryKeyBundle!, String!, an…
89 …strictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public class PrimaryKeyBundle {
90 ctor public PrimaryKeyBundle(boolean, java.util.List<java.lang.String!>!);
93 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle!);
Drestricted_2.6.0-beta01.txt46 …tations.SerializedName("primaryKey") androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, @…
56 method public androidx.room.migration.bundle.PrimaryKeyBundle getPrimaryKey();
66 property public androidx.room.migration.bundle.PrimaryKeyBundle primaryKey;
107 …igration.bundle.FieldBundle> fields, androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, S…
160 …X) public class PrimaryKeyBundle implements androidx.room.migration.bundle.SchemaEquality<androidx…
161 …ctor public PrimaryKeyBundle(@com.google.gson.annotations.SerializedName("autoGenerate") boolean i…
164 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle other);
Drestricted_2.6.0-beta02.txt46 …tations.SerializedName("primaryKey") androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, @…
56 method public androidx.room.migration.bundle.PrimaryKeyBundle getPrimaryKey();
66 property public androidx.room.migration.bundle.PrimaryKeyBundle primaryKey;
107 …igration.bundle.FieldBundle> fields, androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, S…
160 …X) public class PrimaryKeyBundle implements androidx.room.migration.bundle.SchemaEquality<androidx…
161 …ctor public PrimaryKeyBundle(@com.google.gson.annotations.SerializedName("autoGenerate") boolean i…
164 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle other);
Drestricted_2.5.0-beta02.txt46 …tations.SerializedName("primaryKey") androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, @…
56 method public androidx.room.migration.bundle.PrimaryKeyBundle getPrimaryKey();
66 property public androidx.room.migration.bundle.PrimaryKeyBundle primaryKey;
107 …igration.bundle.FieldBundle> fields, androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, S…
160 …X) public class PrimaryKeyBundle implements androidx.room.migration.bundle.SchemaEquality<androidx…
161 …ctor public PrimaryKeyBundle(@com.google.gson.annotations.SerializedName("autoGenerate") boolean i…
164 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle other);
Drestricted_2.5.0-beta01.txt46 …tations.SerializedName("primaryKey") androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, @…
56 method public androidx.room.migration.bundle.PrimaryKeyBundle getPrimaryKey();
66 property public androidx.room.migration.bundle.PrimaryKeyBundle primaryKey;
107 …igration.bundle.FieldBundle> fields, androidx.room.migration.bundle.PrimaryKeyBundle primaryKey, S…
160 …X) public class PrimaryKeyBundle implements androidx.room.migration.bundle.SchemaEquality<androidx…
161 …ctor public PrimaryKeyBundle(@com.google.gson.annotations.SerializedName("autoGenerate") boolean i…
164 method public boolean isSchemaEqual(androidx.room.migration.bundle.PrimaryKeyBundle other);
/room/room-migration/bcv/native/
Dcurrent.txt136PrimaryKeyBundle, kotlin.collections/List<androidx.room.migration.bundle/IndexBundle> = ..., kotli…
153 …final fun <get-primaryKey>(): androidx.room.migration.bundle/PrimaryKeyBundle // androidx.room.mig…
251PrimaryKeyBundle : androidx.room.migration.bundle/SchemaEquality<androidx.room.migration.bundle/Pr…
252 ….collections/List<kotlin/String>) // androidx.room.migration.bundle/PrimaryKeyBundle.<init>|<init>…
254 …final val columnNames // androidx.room.migration.bundle/PrimaryKeyBundle.columnNames|{}columnNames…
255 …n.collections/List<kotlin/String> // androidx.room.migration.bundle/PrimaryKeyBundle.columnNames.<…
256 …final val isAutoGenerate // androidx.room.migration.bundle/PrimaryKeyBundle.isAutoGenerate|{}isAut…
257 …isAutoGenerate>(): kotlin/Boolean // androidx.room.migration.bundle/PrimaryKeyBundle.isAutoGenerat…
259PrimaryKeyBundle): kotlin/Boolean // androidx.room.migration.bundle/PrimaryKeyBundle.isSchemaEqual…
261 …erializer<androidx.room.migration.bundle/PrimaryKeyBundle> { // androidx.room.migration.bundle/Pri…
[all …]
D2.7.0-beta01.txt136PrimaryKeyBundle, kotlin.collections/List<androidx.room.migration.bundle/IndexBundle> = ..., kotli…
153 …final fun <get-primaryKey>(): androidx.room.migration.bundle/PrimaryKeyBundle // androidx.room.mig…
251PrimaryKeyBundle : androidx.room.migration.bundle/SchemaEquality<androidx.room.migration.bundle/Pr…
252 ….collections/List<kotlin/String>) // androidx.room.migration.bundle/PrimaryKeyBundle.<init>|<init>…
254 …final val columnNames // androidx.room.migration.bundle/PrimaryKeyBundle.columnNames|{}columnNames…
255 …n.collections/List<kotlin/String> // androidx.room.migration.bundle/PrimaryKeyBundle.columnNames.<…
256 …final val isAutoGenerate // androidx.room.migration.bundle/PrimaryKeyBundle.isAutoGenerate|{}isAut…
257 …isAutoGenerate>(): kotlin/Boolean // androidx.room.migration.bundle/PrimaryKeyBundle.isAutoGenerat…
259PrimaryKeyBundle): kotlin/Boolean // androidx.room.migration.bundle/PrimaryKeyBundle.isSchemaEqual…
261 …erializer<androidx.room.migration.bundle/PrimaryKeyBundle> { // androidx.room.migration.bundle/Pri…
[all …]