Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/
DSinglePointerTouchProcessorTest.kt94 motionEventAction = MotionEvent.ACTION_DOWN, in <lambda>()
101 motionEventAction = MotionEvent.ACTION_DOWN, in <lambda>()
108 motionEventAction = MotionEvent.ACTION_DOWN, in <lambda>()
116 motionEventAction = MotionEvent.ACTION_HOVER_ENTER, in <lambda>()
123 motionEventAction = MotionEvent.ACTION_HOVER_ENTER, in <lambda>()
130 motionEventAction = MotionEvent.ACTION_HOVER_ENTER, in <lambda>()
138 motionEventAction = MotionEvent.ACTION_MOVE, in <lambda>()
145 motionEventAction = MotionEvent.ACTION_MOVE, in <lambda>()
152 motionEventAction = MotionEvent.ACTION_MOVE, in <lambda>()
159 motionEventAction = MotionEvent.ACTION_MOVE, in <lambda>()
[all …]
/frameworks/native/services/inputflinger/reader/mapper/
DCursorInputMapper.cpp324 int32_t motionEventAction; in sync() local
326 motionEventAction = down ? AMOTION_EVENT_ACTION_DOWN : AMOTION_EVENT_ACTION_UP; in sync()
328 motionEventAction = AMOTION_EVENT_ACTION_MOVE; in sync()
330 motionEventAction = AMOTION_EVENT_ACTION_HOVER_MOVE; in sync()
350 mSource, *mDisplayId, policyFlags, motionEventAction, 0, 0, in sync()
376 if (motionEventAction == AMOTION_EVENT_ACTION_UP && (mSource == AINPUT_SOURCE_MOUSE)) { in sync()
/frameworks/base/core/java/android/view/
DViewRootImpl.java12948 private boolean shouldTouchBoost(int motionEventAction, int windowType) { in shouldTouchBoost() argument
12950 boolean desiredAction = motionEventAction != MotionEvent.ACTION_OUTSIDE; in shouldTouchBoost()