Home
last modified time | relevance | path

Searched refs:MotionEventModel (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/view/
H A DLongPressHandlingViewInteractionHandler.kt37 sealed class MotionEventModel { regex
38 object Other : MotionEventModel()
43 ) : MotionEventModel()
47 ) : MotionEventModel()
52 ) : MotionEventModel()
54 object Cancel : MotionEventModel()
60 fun onTouchEvent(event: MotionEventModel?): Boolean {
66 is MotionEventModel.Down -> {
70 is MotionEventModel.Move -> {
76 is MotionEventModel.Up -> {
[all …]
H A DLongPressHandlingView.kt97 private fun MotionEvent.toModel(): LongPressHandlingViewInteractionHandler.MotionEventModel {
100 LongPressHandlingViewInteractionHandler.MotionEventModel.Down(
105 LongPressHandlingViewInteractionHandler.MotionEventModel.Move(
109 LongPressHandlingViewInteractionHandler.MotionEventModel.Up(
113 MotionEvent.ACTION_CANCEL -> LongPressHandlingViewInteractionHandler.MotionEventModel.Cancel
114 else -> LongPressHandlingViewInteractionHandler.MotionEventModel.Other
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/common/ui/view/
H A DLongPressHandlingViewInteractionHandlerTest.kt23 import com.android.systemui.common.ui.view.LongPressHandlingViewInteractionHandler.MotionEventModel
24 import com.android.systemui.common.ui.view.LongPressHandlingViewInteractionHandler.MotionEventModel
25 import com.android.systemui.common.ui.view.LongPressHandlingViewInteractionHandler.MotionEventModel
26 import com.android.systemui.common.ui.view.LongPressHandlingViewInteractionHandler.MotionEventModel
159 vararg models: MotionEventModel,