Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubblesNavBarMotionEventHandlerTest.java60 private MotionEventListener mMotionEventListener; field in BubblesNavBarMotionEventHandlerTest
69 mInterceptTouchRunnable, mMotionEventListener); in setUp()
81 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_swipeUpInGestureZone_handled()
82 verify(mMotionEventListener).onMove(0, -300); in testMotionEvent_swipeUpInGestureZone_handled()
83 verify(mMotionEventListener).onMove(0, -500); in testMotionEvent_swipeUpInGestureZone_handled()
84 verify(mMotionEventListener).onMove(0, -600); in testMotionEvent_swipeUpInGestureZone_handled()
86 verify(mMotionEventListener).onUp(eq(0f), floatThat(f -> Math.round(f) == -5000)); in testMotionEvent_swipeUpInGestureZone_handled()
87 verifyZeroInteractions(mMotionEventListener); in testMotionEvent_swipeUpInGestureZone_handled()
97 verifyZeroInteractions(mMotionEventListener); in testMotionEvent_swipeUpOutsideGestureZone_ignored()
107 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_horizontalMoveMoreThanTouchSlop_handled()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubblesNavBarMotionEventHandler.java42 private final MotionEventListener mMotionEventListener; field in BubblesNavBarMotionEventHandler
56 mMotionEventListener = motionEventListener; in BubblesNavBarMotionEventHandler()
73 mMotionEventListener.onDown(motionEvent.getX(), motionEvent.getY()); in onMotionEvent()
86 mMotionEventListener.onMove(dx, dy); in onMotionEvent()
93 mMotionEventListener.onCancel(); in onMotionEvent()
102 mMotionEventListener.onUp(getVelocityTracker().getXVelocity(), in onMotionEvent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DFalsingClassifier.java31 private final FalsingDataProvider.MotionEventListener mMotionEventListener = this::onTouchEvent; field in FalsingClassifier
35 mDataProvider.addMotionEventListener(mMotionEventListener); in FalsingClassifier()
99 mDataProvider.removeMotionEventListener(mMotionEventListener); in cleanup()