/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | AccessibilityInputFilterInputTest.kt | 35 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/ |
D | TouchExplorerTest.java | 21 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/ |
D | DragDetectorTest.kt | 171 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/ |
D | LiftToActivateListener.java | 47 case MotionEvent.ACTION_HOVER_ENTER: in onHover()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/brightness/ |
D | ToggleSeekBar.java | 60 if (event.getAction() == MotionEvent.ACTION_HOVER_ENTER) { in onHoverEvent()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/ |
D | DraggableConstraintLayoutTest.java | 78 MotionEvent.obtain(0, 0, MotionEvent.ACTION_HOVER_ENTER, 0, 0, 0)); in test_callbacksNotSet()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputDispatcher_test.cpp | 84 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/ |
D | AbsActionBarView.java | 137 if (action == MotionEvent.ACTION_HOVER_ENTER) { in onHoverEvent() 143 if (action == MotionEvent.ACTION_HOVER_ENTER && !handled) { in onHoverEvent()
|
D | ExploreByTouchHelper.java | 146 case MotionEvent.ACTION_HOVER_ENTER: in dispatchHoverEvent()
|
/frameworks/base/core/java/android/view/ |
D | TouchDelegate.java | 182 case MotionEvent.ACTION_HOVER_ENTER: in onTouchExplorationHoverEvent()
|
D | MotionEvent.java | 332 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/ |
D | HandwritingModeController.java | 408 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/ |
D | DividerViewTest.java | 86 mDividerView.onHoverEvent(getMotionEvent(downTime, MotionEvent.ACTION_HOVER_ENTER, x, y)); in testHoverDividerView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusOverlayHoverListener.kt | 137 if (event.action == MotionEvent.ACTION_HOVER_ENTER) { in onHover()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/utils/ |
D | GestureLogParser.java | 154 return MotionEvent.ACTION_HOVER_ENTER; in stringToAction()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/ |
D | SinglePointerTouchProcessorTest.kt | 116 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/ |
D | StatusOverlayHoverListenerTest.kt | 167 injectHoverEvent(hoverEvent(MotionEvent.ACTION_HOVER_ENTER)) in TestableStatusContainer()
|
/frameworks/base/core/java/android/widget/ |
D | DropDownListView.java | 132 if (action == MotionEvent.ACTION_HOVER_ENTER in onHoverEvent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/ |
D | SinglePointerTouchProcessor.kt | 64 MotionEvent.ACTION_HOVER_ENTER, in processTouch()
|
/frameworks/base/core/tests/coretests/src/android/view/ |
D | ViewGroupGetChildLocalHitRegionTest.java | 152 int action = isHover ? MotionEvent.ACTION_HOVER_ENTER : MotionEvent.ACTION_DOWN; in injectMotionEvent()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityInputFilter.java | 225 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()
|
D | AutoclickController.java | 145 case MotionEvent.ACTION_HOVER_ENTER: in handleMouseMotion()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
D | TouchState.java | 162 case MotionEvent.ACTION_HOVER_ENTER: in onInjectedMotionEvent()
|
D | TouchExplorer.java | 23 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/ |
D | DesktopModeWindowDecorViewModel.java | 27 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()
|