Home
last modified time | relevance | path

Searched refs:lastMotionEvent (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/viewmodel/
DSeekBarViewModel.kt343 @VisibleForTesting var lastMotionEvent: MotionEvent? = null variable in com.android.systemui.media.controls.ui.viewmodel.SeekBarViewModel
381 if (firstMotionEvent == null || lastMotionEvent == null) { in isValidSeekbarGrab()
384 return abs(firstMotionEvent!!.x - lastMotionEvent!!.x) >= in isValidSeekbarGrab()
385 abs(firstMotionEvent!!.y - lastMotionEvent!!.y) in isValidSeekbarGrab()
462 viewModel.lastMotionEvent = event.copy() in onTouch()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/viewmodel/
DSeekBarViewModelTest.kt489 viewModel.lastMotionEvent = MotionEvent.obtain(12L, 14L, MotionEvent.ACTION_UP, 78F, 4F, 0) in onSeekbarGrabInvalidTouch()
510 viewModel.lastMotionEvent = MotionEvent.obtain(12L, 14L, MotionEvent.ACTION_UP, 40F, 1F, 0) in onSeekbarGrabValidTouch()