Home
last modified time | relevance | path

Searched refs:maybeConsumeMotionEvent (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/magnetictarget/
H A DMagnetizedObjectTest.kt145 assertFalse(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
149 assertFalse(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
154 assertFalse(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
160 assertTrue(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
166 assertTrue(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
170 assertFalse(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
174 assertTrue(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
179 assertFalse(magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
344 magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
349 magnetizedObject.maybeConsumeMotionEvent(getMotionEvent(
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
H A DDismissAnimationController.java121 mMagnetizedObject.maybeConsumeMotionEvent(event); in maybeConsumeDownMotionEvent()
134 return mMagnetizedObject.maybeConsumeMotionEvent(event); in maybeConsumeMoveMotionEvent()
147 return mMagnetizedObject.maybeConsumeMotionEvent(event); in maybeConsumeUpMotionEvent()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
H A DPipDismissTargetHandler.java182 public boolean maybeConsumeMotionEvent(MotionEvent ev) { in maybeConsumeMotionEvent() method in PipDismissTargetHandler
183 return mMagnetizedPip.maybeConsumeMotionEvent(ev); in maybeConsumeMotionEvent()
H A DPipTouchHandler.java532 && mPipDismissTargetHandler.maybeConsumeMotionEvent(ev)) { in handleTouchEvent()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/magnetictarget/
H A DMagnetizedObject.kt318 fun maybeConsumeMotionEvent(ev: MotionEvent): Boolean { regex
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleStackView.java2662 return mMagnetizedObject != null && mMagnetizedObject.maybeConsumeMotionEvent(event); in passEventToMagnetizedObject()