Searched refs:ForeignKeyAction (Results 1 – 6 of 6) sorted by relevance
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/vo/ |
D | EntityTest.kt | 36 createForeignKey("NoAction", ForeignKeyAction.NO_ACTION, false), in shouldBeDeletedAfter() 37 createForeignKey("NoActionDeferred", ForeignKeyAction.NO_ACTION, true), in shouldBeDeletedAfter() 38 createForeignKey("Restrict", ForeignKeyAction.RESTRICT, false), in shouldBeDeletedAfter() 39 createForeignKey("RestrictDeferred", ForeignKeyAction.RESTRICT, true), in shouldBeDeletedAfter() 40 createForeignKey("SetNull", ForeignKeyAction.SET_NULL, false), in shouldBeDeletedAfter() 41 createForeignKey("SetNullDeferred", ForeignKeyAction.SET_NULL, true), in shouldBeDeletedAfter() 42 createForeignKey("SetDefault", ForeignKeyAction.SET_DEFAULT, false), in shouldBeDeletedAfter() 43 createForeignKey("SetDefaultDeferred", ForeignKeyAction.SET_DEFAULT, true), in shouldBeDeletedAfter() 44 createForeignKey("Cascade", ForeignKeyAction.CASCADE, false), in shouldBeDeletedAfter() 45 createForeignKey("CascadeDeferred", ForeignKeyAction.CASCADE, true))) in shouldBeDeletedAfter() [all …]
|
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/ |
D | ForeignKeyAction.kt | 24 enum class ForeignKeyAction(val annotationValue: Int, val sqlName: String) { class 32 ForeignKeyAction.values().associateBy { it.annotationValue } in <lambda>()
|
D | ForeignKey.kt | 27 val onDelete: ForeignKeyAction, 28 val onUpdate: ForeignKeyAction,
|
D | Entity.kt | 72 && ((!it.deferred && it.onDelete == ForeignKeyAction.NO_ACTION) in <lambda>() 73 || it.onDelete == ForeignKeyAction.RESTRICT) in <lambda>()
|
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/processor/ |
D | EntityProcessor.kt | 33 import androidx.room.vo.ForeignKeyAction in <lambda>() 560 val onDelete = ForeignKeyAction.fromAnnotationValue(onDeleteInput) in <lambda>() 561 val onUpdate = ForeignKeyAction.fromAnnotationValue(onUpdateInput) in <lambda>() 585 val onDelete: ForeignKeyAction?, in <lambda>() 586 val onUpdate: ForeignKeyAction?, in <lambda>()
|
/frameworks/support/jetifier/jetifier/core/src/main/resources/ |
D | default.generated.config | 2460 "android/arch/persistence/room/vo/ForeignKeyAction": "androidx/room/vo/ForeignKeyAction",
|