Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAbsListView.java576 private CheckForLongPress mPendingCheckForLongPress; field in AbsListView
3135 if (mPendingCheckForLongPress != null) { in onCancelPendingInputEvents()
3136 removeCallbacks(mPendingCheckForLongPress); in onCancelPendingInputEvents()
3510 if (mPendingCheckForLongPress == null) { in run()
3511 mPendingCheckForLongPress = new CheckForLongPress(); in run()
3513 mPendingCheckForLongPress.setCoords(x, y); in run()
3514 mPendingCheckForLongPress.rememberWindowAttachCount(); in run()
3515 postDelayed(mPendingCheckForLongPress, longPressTimeout); in run()
3543 removeCallbacks(mPendingCheckForLongPress); in startScrollIfNeeded()
4024 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java4910 private CheckForLongPress mPendingCheckForLongPress; field in View
15883 if (mPendingCheckForLongPress != null) {
15884 removeCallbacks(mPendingCheckForLongPress);
15893 if (mPendingCheckForLongPress == null) {
15900 return attachInfo.mHandler.hasCallbacks(mPendingCheckForLongPress);
26684 if (mPendingCheckForLongPress == null) { in checkForLongClick()
26685 mPendingCheckForLongPress = new CheckForLongPress(); in checkForLongClick()
26687 mPendingCheckForLongPress.setAnchor(x, y); in checkForLongClick()
26688 mPendingCheckForLongPress.rememberWindowAttachCount(); in checkForLongClick()
26689 mPendingCheckForLongPress.rememberPressedState(); in checkForLongClick()
[all …]