Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
H A DBubblesNavBarMotionEventHandlerTest.java62 private MotionEventListener mMotionEventListener; field in BubblesNavBarMotionEventHandlerTest
83 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_swipeUpInGestureZone_handled()
84 verify(mMotionEventListener).onMove(0, -300); in testMotionEvent_swipeUpInGestureZone_handled()
85 verify(mMotionEventListener).onMove(0, -500); in testMotionEvent_swipeUpInGestureZone_handled()
86 verify(mMotionEventListener).onMove(0, -600); in testMotionEvent_swipeUpInGestureZone_handled()
109 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_horizontalMoveMoreThanTouchSlop_handled()
110 verify(mMotionEventListener).onMove(100, 0); in testMotionEvent_horizontalMoveMoreThanTouchSlop_handled()
111 verify(mMotionEventListener).onUp(0, 0); in testMotionEvent_horizontalMoveMoreThanTouchSlop_handled()
122 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_moveLessThanTouchSlop_ignored()
131 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_actionCancel_listenerNotified()
[all …]
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A 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()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingClassifier.java31 private final FalsingDataProvider.MotionEventListener mMotionEventListener = this::onTouchEvent; field in FalsingClassifier
35 mDataProvider.addMotionEventListener(mMotionEventListener); in FalsingClassifier()
99 mDataProvider.removeMotionEventListener(mMotionEventListener); in cleanup()