Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAbsListView.java546 private CheckForLongPress mPendingCheckForLongPress; field in AbsListView
3082 if (mPendingCheckForLongPress != null) { in onCancelPendingInputEvents()
3083 removeCallbacks(mPendingCheckForLongPress); in onCancelPendingInputEvents()
3455 if (mPendingCheckForLongPress == null) { in run()
3456 mPendingCheckForLongPress = new CheckForLongPress(); in run()
3458 mPendingCheckForLongPress.setCoords(x, y); in run()
3459 mPendingCheckForLongPress.rememberWindowAttachCount(); in run()
3460 postDelayed(mPendingCheckForLongPress, longPressTimeout); in run()
3488 removeCallbacks(mPendingCheckForLongPress); in startScrollIfNeeded()
3968 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java3669 private CheckForLongPress mPendingCheckForLongPress; field in View
11231 if (mPendingCheckForLongPress != null) { in removeLongPressCallback()
11232 removeCallbacks(mPendingCheckForLongPress); in removeLongPressCallback()
20818 if (mPendingCheckForLongPress == null) { in checkForLongClick()
20819 mPendingCheckForLongPress = new CheckForLongPress(); in checkForLongClick()
20821 mPendingCheckForLongPress.setAnchor(x, y); in checkForLongClick()
20822 mPendingCheckForLongPress.rememberWindowAttachCount(); in checkForLongClick()
20823 postDelayed(mPendingCheckForLongPress, in checkForLongClick()