Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewGroup.java2075 MotionEvent eventNoHistory = event; in dispatchHoverEvent() local
2146 eventNoHistory = obtainMotionEventNoHistoryOrSelf(eventNoHistory); in dispatchHoverEvent()
2147 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_ENTER); in dispatchHoverEvent()
2149 eventNoHistory, child); // enter in dispatchHoverEvent()
2150 eventNoHistory.setAction(action); in dispatchHoverEvent()
2153 eventNoHistory, child); // move in dispatchHoverEvent()
2186 eventNoHistory = obtainMotionEventNoHistoryOrSelf(eventNoHistory); in dispatchHoverEvent()
2187 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_EXIT); in dispatchHoverEvent()
2189 eventNoHistory, child); // exit in dispatchHoverEvent()
2190 eventNoHistory.setAction(action); in dispatchHoverEvent()
[all …]
DView.java14966 MotionEvent eventNoHistory = (event.getHistorySize() == 0) in dispatchTouchExplorationHoverEvent() local
14968 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_ENTER); in dispatchTouchExplorationHoverEvent()
14969 handled = mTouchDelegate.onTouchExplorationHoverEvent(eventNoHistory); in dispatchTouchExplorationHoverEvent()
14970 eventNoHistory.setAction(action); in dispatchTouchExplorationHoverEvent()
14971 handled |= mTouchDelegate.onTouchExplorationHoverEvent(eventNoHistory); in dispatchTouchExplorationHoverEvent()
14977 MotionEvent eventNoHistory = (event.getHistorySize() == 0) in dispatchTouchExplorationHoverEvent() local
14979 eventNoHistory.setHoverExitPending(hoverExitPending); in dispatchTouchExplorationHoverEvent()
14980 eventNoHistory.setAction(MotionEvent.ACTION_HOVER_EXIT); in dispatchTouchExplorationHoverEvent()
14981 mTouchDelegate.onTouchExplorationHoverEvent(eventNoHistory); in dispatchTouchExplorationHoverEvent()