Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAbsListView.java548 private CheckForLongPress mPendingCheckForLongPress; field in AbsListView
3088 if (mPendingCheckForLongPress != null) { in onCancelPendingInputEvents()
3089 removeCallbacks(mPendingCheckForLongPress); in onCancelPendingInputEvents()
3461 if (mPendingCheckForLongPress == null) { in run()
3462 mPendingCheckForLongPress = new CheckForLongPress(); in run()
3464 mPendingCheckForLongPress.setCoords(x, y); in run()
3465 mPendingCheckForLongPress.rememberWindowAttachCount(); in run()
3466 postDelayed(mPendingCheckForLongPress, longPressTimeout); in run()
3494 removeCallbacks(mPendingCheckForLongPress); in startScrollIfNeeded()
3974 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java3687 private CheckForLongPress mPendingCheckForLongPress; field in View
11315 if (mPendingCheckForLongPress != null) { in removeLongPressCallback()
11316 removeCallbacks(mPendingCheckForLongPress); in removeLongPressCallback()
20988 if (mPendingCheckForLongPress == null) { in checkForLongClick()
20989 mPendingCheckForLongPress = new CheckForLongPress(); in checkForLongClick()
20991 mPendingCheckForLongPress.setAnchor(x, y); in checkForLongClick()
20992 mPendingCheckForLongPress.rememberWindowAttachCount(); in checkForLongClick()
20993 postDelayed(mPendingCheckForLongPress, in checkForLongClick()