Home
last modified time | relevance | path

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

/cts/tests/inputmethod/util/src/android/view/inputmethod/cts/util/
DTestUtils.java326 return injectStylusEvent(view, ACTION_DOWN, x, y); in injectStylusDownEvent()
369 return injectStylusEvent(view, ACTION_UP, x, y); in injectStylusUpEvent()
373 injectStylusEvent(view, MotionEvent.ACTION_HOVER_ENTER, x, y); in injectStylusHoverEvents()
374 injectStylusEvent(view, MotionEvent.ACTION_HOVER_MOVE, x, y); in injectStylusHoverEvents()
375 injectStylusEvent(view, MotionEvent.ACTION_HOVER_EXIT, x, y); in injectStylusHoverEvents()
378 private static MotionEvent injectStylusEvent(@NonNull View view, int action, int x, int y) { in injectStylusEvent() method in TestUtils