Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/viewmodel/
DSeekBarViewModel.kt342 @VisibleForTesting var firstMotionEvent: 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()
508 viewModel.firstMotionEvent = event.copy() in onDown()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/viewmodel/
DSeekBarViewModelTest.kt487 viewModel.firstMotionEvent = in onSeekbarGrabInvalidTouch()
508 viewModel.firstMotionEvent = in onSeekbarGrabValidTouch()