Searched refs:assertReceivedMotion (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | AccessibilityInputFilterInputTest.kt | 178 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_DOWN))) in testSingleDeviceTouchEventsWithoutA11yFeatures() 181 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_MOVE))) in testSingleDeviceTouchEventsWithoutA11yFeatures() 184 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_UP))) in testSingleDeviceTouchEventsWithoutA11yFeatures() 200 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testSingleDeviceTouchEventsWithAllA11yFeatures() 204 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_MOVE))) in testSingleDeviceTouchEventsWithAllA11yFeatures() 208 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_EXIT))) in testSingleDeviceTouchEventsWithAllA11yFeatures() 224 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testTouchDownCancelDownWithAllA11yFeatures() 228 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_EXIT))) in testTouchDownCancelDownWithAllA11yFeatures() 233 verifier.assertReceivedMotion(allOf(fromTouchScreen, withMotionAction(ACTION_HOVER_ENTER))) in testTouchDownCancelDownWithAllA11yFeatures() 250 verifier.assertReceivedMotion(allOf(fromStylus, withMotionAction(ACTION_HOVER_ENTER))) in testStylusDownCancelDownWithAllA11yFeatures() [all …]
|
D | BlockingQueueEventVerifier.kt | 35 fun assertReceivedMotion(matcher: Matcher<MotionEvent>) { in assertReceivedMotion() method
|
/frameworks/native/services/inputflinger/tests/ |
D | InputReader_test.cpp | 1686 void assertReceivedMotion(int32_t action, const std::vector<Point>& points) { in assertReceivedMotion() function in android::BaseTouchIntegrationTest 1844 assertReceivedMotion(AMOTION_EVENT_ACTION_DOWN, {centerPoint}); in TEST_P() 1852 assertReceivedMotion(ACTION_POINTER_1_DOWN, {centerPoint, secondPoint}); in TEST_P() 1864 assertReceivedMotion(ACTION_POINTER_1_UP, in TEST_P() 1869 assertReceivedMotion(AMOTION_EVENT_ACTION_MOVE, {centerPoint + Point(5, 5)}); in TEST_P() 1887 assertReceivedMotion(AMOTION_EVENT_ACTION_DOWN, {centerPoint}); in TEST_P() 1895 assertReceivedMotion(ACTION_POINTER_1_DOWN, {centerPoint, secondPoint}); in TEST_P() 1910 assertReceivedMotion(ACTION_POINTER_1_UP, in TEST_P() 1915 assertReceivedMotion(AMOTION_EVENT_ACTION_MOVE, {centerPoint + Point(5, 5)}); in TEST_P()
|