Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
H A DClassifierTest.java91 return appendMotionEvent(MotionEvent.ACTION_DOWN, x, y); in appendDownEvent()
95 return appendMotionEvent(MotionEvent.ACTION_DOWN, x, y, eventTime); in appendDownEvent()
99 return appendMotionEvent(MotionEvent.ACTION_MOVE, x, y); in appendMoveEvent()
103 return appendMotionEvent(MotionEvent.ACTION_MOVE, x, y, eventTime); in appendMoveEvent()
108 return appendMotionEvent(MotionEvent.ACTION_UP, x, y); in appendUpEvent()
112 return appendMotionEvent(MotionEvent.ACTION_UP, x, y, eventTime); in appendUpEvent()
115 private MotionEvent appendMotionEvent(int actionType, float x, float y) { in appendMotionEvent() method in ClassifierTest
119 return appendMotionEvent(actionType, x, y, eventTime); in appendMotionEvent()
122 private MotionEvent appendMotionEvent(int actionType, float x, float y, long eventTime) { in appendMotionEvent() method in ClassifierTest