/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/ |
H A D | BubblesNavBarMotionEventHandlerTest.java | 83 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_swipeUpInGestureZone_handled() 109 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_horizontalMoveMoreThanTouchSlop_handled() 122 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_moveLessThanTouchSlop_ignored() 131 verify(mMotionEventListener).onDown(0, 990); in testMotionEvent_actionCancel_listenerNotified()
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
H A D | MultiTapAndHold.java | 34 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in MultiTapAndHold 35 super.onDown(event, rawEvent, policyFlags); in onDown()
|
H A D | GestureMatcher.java | 140 onDown(event, rawEvent, policyFlags); in onMotionEvent() 167 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) {} in onDown() method in GestureMatcher
|
H A D | MultiTap.java | 64 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in MultiTap
|
H A D | MultiFingerMultiTap.java | 93 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in MultiFingerMultiTap
|
H A D | Swipe.java | 141 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in Swipe
|
H A D | MultiFingerSwipe.java | 122 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in MultiFingerSwipe
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | BubblesNavBarMotionEventHandler.java | 73 mMotionEventListener.onDown(motionEvent.getX(), motionEvent.getY()); in onMotionEvent() 150 void onDown(float x, float y); in onDown() method
|
H A D | BubbleStackView.java | 573 public boolean onDown(@NonNull View v, @NonNull MotionEvent ev) { 713 public boolean onDown(@NonNull View v, @NonNull MotionEvent ev) { 715 mSwipeUpListener.onDown(ev.getX(), ev.getY()); 737 public void onDown(float x, float y) {} 813 public boolean onDown(@NonNull View v, @NonNull MotionEvent ev) {
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/ |
H A D | RelativeTouchListener.kt | 39 abstract fun onDown(v: View, ev: MotionEvent): Boolean regex 103 if (!onDown(v, ev)) {
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dreams/touch/ |
H A D | DreamOverlayTouchMonitorTest.java | 328 when(gestureListener.onDown(any())).thenReturn(true); in testGestureConsumption() 331 assertThat(onGestureListener.onDown(event)).isTrue(); in testGestureConsumption() 334 verify(gestureListener).onDown(eq(event)); in testGestureConsumption() 528 when(gestureListener2.onDown(any())).thenReturn(true); in testPilfering() 532 onGestureListener -> onGestureListener.onDown(gestureEvent)); in testPilfering() 538 onGestureListener -> onGestureListener.onDown(followupEvent)); in testPilfering() 540 verify(gestureListener1, never()).onDown(any()); in testPilfering() 541 verify(gestureListener2).onDown(eq(followupEvent)); in testPilfering()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
H A D | PipTouchGesture.java | 27 public void onDown(PipTouchState touchState) {} in onDown() method in PipTouchGesture
|
H A D | PipTouchHandler.java | 554 mGesture.onDown(mTouchState); in handleTouchEvent() 793 public void onDown(PipTouchState touchState) {
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/ |
H A D | SimpleSwipe.java | 46 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in SimpleSwipe
|
H A D | TwoFingersDownOrSwipe.java | 52 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in TwoFingersDownOrSwipe
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/touch/ |
H A D | DreamOverlayTouchMonitor.java | 384 public boolean onDown(MotionEvent e) { 385 return evaluate(listener -> listener.onDown(e));
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | GestureDetector.java | 73 boolean onDown(@NonNull MotionEvent e); in onDown() method 219 public boolean onDown(@NonNull MotionEvent e) { in onDown() method in GestureDetector.SimpleOnGestureListener 654 handled |= mListener.onDown(ev); in onTouchEvent()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/ |
H A D | GesturesObserverTest.java | 123 protected void onDown(MotionEvent event, MotionEvent rawEvent, int policyFlags) { in onDown() method in GesturesObserverTest.GestureMatcherStub
|
/aosp14/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
H A D | NotificationShadeActivity.java | 60 public boolean onDown(MotionEvent motionEvent) {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/gesture/ |
H A D | GesturePointerEventListener.kt | 184 mCallbacks?.onDown() 468 fun onDown() regex
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | SystemGesturesPointerEventListener.java | 204 mCallbacks.onDown(); in onPointerEvent() 460 void onDown();
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | DecorCaptionView.java | 372 public boolean onDown(MotionEvent e) { in onDown() method in DecorCaptionView
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
H A D | ToggleRangeBehavior.kt | 326 override fun onDown(e: MotionEvent): Boolean {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/models/player/ |
H A D | SeekBarViewModel.kt | 464 override fun onDown(event: MotionEvent): Boolean {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/ |
H A D | MediaCarouselScrollHandler.kt | 143 override fun onDown(e: MotionEvent): Boolean {
|