Home
last modified time | relevance | path

Searched refs:ACTION_HOVER_ENTER (Results 1 – 25 of 49) sorted by relevance

12

/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DAccessibilityInputFilterInputTest.kt35 import android.view.MotionEvent.ACTION_HOVER_ENTER
200 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testSingleDeviceTouchEventsWithAllA11yFeatures()
224 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testTouchDownCancelDownWithAllA11yFeatures()
233 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testTouchDownCancelDownWithAllA11yFeatures()
250 verifier.assertReceivedMotion(allOf(fromStylus, withMotionAction(ACTION_HOVER_ENTER))) in testStylusDownCancelDownWithAllA11yFeatures()
259 verifier.assertReceivedMotion(allOf(fromStylus, withMotionAction(ACTION_HOVER_ENTER))) in testStylusDownCancelDownWithAllA11yFeatures()
274 verifier.assertReceivedMotion(allOf(fromStylus, withMotionAction(ACTION_HOVER_ENTER))) in testStylusThenTouch()
282 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testStylusThenTouch()
301 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testSingleDeviceTouchEventsDisableFeaturesMidGesture()
383 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testMultiDeviceEventsWithAllA11yFeatures()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
DTouchExplorerTest.java21 import static android.view.MotionEvent.ACTION_HOVER_ENTER;
167 assertCapturedEvents(ACTION_HOVER_ENTER, ACTION_HOVER_MOVE, ACTION_HOVER_EXIT); in testOneFingerMove_shouldInjectHoverEvents()
191 ACTION_HOVER_ENTER, in testOneFingerMoveWithExtraMoveEvents()
229 motionEvent -> motionEvent.getActionMasked() == ACTION_HOVER_ENTER in testClick_afterCanceledDoubleTapAndHold_eventLocationIsCorrect()
262 assertCapturedEvents(ACTION_HOVER_ENTER, ACTION_HOVER_MOVE, ACTION_HOVER_EXIT); in testUpEvent_OneFingerMove_clearStateAndInjectHoverEvents()
308 assertCapturedEvents(ACTION_HOVER_ENTER, ACTION_HOVER_MOVE, ACTION_HOVER_EXIT); in testFlickCrossViews_clearStateAndExpectedEvents()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/windowdecor/
DDragDetectorTest.kt171 it.action == MotionEvent.ACTION_HOVER_ENTER in testPassesHoverEnter()
174 assertFalse(dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_HOVER_ENTER))) in testPassesHoverEnter()
176 return@argThat it.action == MotionEvent.ACTION_HOVER_ENTER && it.x == X && it.y == Y in testPassesHoverEnter()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DLiftToActivateListener.java47 case MotionEvent.ACTION_HOVER_ENTER: in onHover()
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/brightness/
DToggleSeekBar.java60 if (event.getAction() == MotionEvent.ACTION_HOVER_ENTER) { in onHoverEvent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DDraggableConstraintLayoutTest.java78 MotionEvent.obtain(0, 0, MotionEvent.ACTION_HOVER_ENTER, 0, 0, 0)); in test_callbacksNotSet()
/frameworks/native/services/inputflinger/tests/
DInputDispatcher_test.cpp84 static constexpr int32_t ACTION_HOVER_ENTER = AMOTION_EVENT_ACTION_HOVER_ENTER; variable
1543 mDispatcher->notifyMotion(MotionArgsBuilder(ACTION_HOVER_ENTER, AINPUT_SOURCE_STYLUS) in TEST_F()
1547 window->consumeMotionEvent(WithMotionAction(ACTION_HOVER_ENTER)); in TEST_F()
1565 mDispatcher->notifyMotion(MotionArgsBuilder(ACTION_HOVER_ENTER, AINPUT_SOURCE_STYLUS) in TEST_F()
1569 window->consumeMotionEvent(WithMotionAction(ACTION_HOVER_ENTER)); in TEST_F()
1804 mDispatcher->notifyMotion(MotionArgsBuilder(ACTION_HOVER_ENTER, AINPUT_SOURCE_STYLUS) in TEST_F()
1807 window->consumeMotionEvent(WithMotionAction(ACTION_HOVER_ENTER)); in TEST_F()
1833 mDispatcher->notifyMotion(MotionArgsBuilder(ACTION_HOVER_ENTER, AINPUT_SOURCE_STYLUS) in TEST_F()
1836 window->consumeMotionEvent(WithMotionAction(ACTION_HOVER_ENTER)); in TEST_F()
1853 mDispatcher->notifyMotion(MotionArgsBuilder(ACTION_HOVER_ENTER, AINPUT_SOURCE_STYLUS) in TEST_F()
[all …]
/frameworks/base/core/java/com/android/internal/widget/
DAbsActionBarView.java137 if (action == MotionEvent.ACTION_HOVER_ENTER) { in onHoverEvent()
143 if (action == MotionEvent.ACTION_HOVER_ENTER && !handled) { in onHoverEvent()
DExploreByTouchHelper.java146 case MotionEvent.ACTION_HOVER_ENTER: in dispatchHoverEvent()
/frameworks/base/core/java/android/view/
DTouchDelegate.java182 case MotionEvent.ACTION_HOVER_ENTER: in onTouchExplorationHoverEvent()
DMotionEvent.java332 public static final int ACTION_HOVER_ENTER = 9; field in MotionEvent
460 ACTION_HOVER_ENTER,
2486 return getActionMasked() == ACTION_HOVER_ENTER in isHoverEvent()
3985 case ACTION_HOVER_ENTER: in actionToString()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DHandwritingModeController.java408 if (mInkWindowInitRunnable != null && (action == MotionEvent.ACTION_HOVER_ENTER in onStylusEvent()
409 || event.getAction() == MotionEvent.ACTION_HOVER_ENTER)) { in onStylusEvent()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/split/
DDividerViewTest.java86 mDividerView.onHoverEvent(getMotionEvent(downTime, MotionEvent.ACTION_HOVER_ENTER, x, y)); in testHoverDividerView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusOverlayHoverListener.kt137 if (event.action == MotionEvent.ACTION_HOVER_ENTER) { in onHover()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/utils/
DGestureLogParser.java154 return MotionEvent.ACTION_HOVER_ENTER; in stringToAction()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/
DSinglePointerTouchProcessorTest.kt116 motionEventAction = MotionEvent.ACTION_HOVER_ENTER, in <lambda>()
123 motionEventAction = MotionEvent.ACTION_HOVER_ENTER, in <lambda>()
130 motionEventAction = MotionEvent.ACTION_HOVER_ENTER, in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusOverlayHoverListenerTest.kt167 injectHoverEvent(hoverEvent(MotionEvent.ACTION_HOVER_ENTER)) in TestableStatusContainer()
/frameworks/base/core/java/android/widget/
DDropDownListView.java132 if (action == MotionEvent.ACTION_HOVER_ENTER in onHoverEvent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
DSinglePointerTouchProcessor.kt64 MotionEvent.ACTION_HOVER_ENTER, in processTouch()
/frameworks/base/core/tests/coretests/src/android/view/
DViewGroupGetChildLocalHitRegionTest.java152 int action = isHover ? MotionEvent.ACTION_HOVER_ENTER : MotionEvent.ACTION_DOWN; in injectMotionEvent()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityInputFilter.java225 if (event.getActionMasked() == MotionEvent.ACTION_HOVER_ENTER in cancelMotion()
450 case MotionEvent.ACTION_HOVER_ENTER: in shouldProcessMultiDeviceEvent()
1074 mHoverSequenceStarted = event.getActionMasked() == MotionEvent.ACTION_HOVER_ENTER; in shouldProcessMotionEvent()
DAutoclickController.java145 case MotionEvent.ACTION_HOVER_ENTER: in handleMouseMotion()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/
DTouchState.java162 case MotionEvent.ACTION_HOVER_ENTER: in onInjectedMotionEvent()
DTouchExplorer.java23 import static android.view.MotionEvent.ACTION_HOVER_ENTER;
1148 ACTION_HOVER_ENTER, in sendTouchExplorationGestureStartAndHoverEnterIfNeeded()
1619 ACTION_HOVER_ENTER, in run()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
DDesktopModeWindowDecorViewModel.java27 import static android.view.MotionEvent.ACTION_HOVER_ENTER;
577 if (ev.getAction() == ACTION_HOVER_ENTER) { in onGenericMotion()
860 case MotionEvent.ACTION_HOVER_ENTER: { in handleCaptionThroughStatusBar()

12