Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewGroup.java2119 MotionEvent eventNoHistory = event; in dispatchHoverEvent() local
2190 eventNoHistory = obtainMotionEventNoHistoryOrSelf(eventNoHistory); in dispatchHoverEvent()
2191 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_ENTER); in dispatchHoverEvent()
2193 eventNoHistory, child); // enter in dispatchHoverEvent()
2194 eventNoHistory.setAction(action); in dispatchHoverEvent()
2197 eventNoHistory, child); // move in dispatchHoverEvent()
2230 eventNoHistory = obtainMotionEventNoHistoryOrSelf(eventNoHistory); in dispatchHoverEvent()
2231 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_EXIT); in dispatchHoverEvent()
2233 eventNoHistory, child); // exit in dispatchHoverEvent()
2234 eventNoHistory.setAction(action); in dispatchHoverEvent()
[all …]
DView.java17534 MotionEvent eventNoHistory = (event.getHistorySize() == 0) in dispatchTouchExplorationHoverEvent() local
17536 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_ENTER); in dispatchTouchExplorationHoverEvent()
17537 handled = mTouchDelegate.onTouchExplorationHoverEvent(eventNoHistory); in dispatchTouchExplorationHoverEvent()
17538 eventNoHistory.setAction(action); in dispatchTouchExplorationHoverEvent()
17539 handled |= mTouchDelegate.onTouchExplorationHoverEvent(eventNoHistory); in dispatchTouchExplorationHoverEvent()
17545 MotionEvent eventNoHistory = (event.getHistorySize() == 0) in dispatchTouchExplorationHoverEvent() local
17547 eventNoHistory.setHoverExitPending(hoverExitPending); in dispatchTouchExplorationHoverEvent()
17548 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_EXIT); in dispatchTouchExplorationHoverEvent()
17549 mTouchDelegate.onTouchExplorationHoverEvent(eventNoHistory); in dispatchTouchExplorationHoverEvent()