Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DCheckLongPressHelper.java38 private Runnable mPendingCheckForLongPress; field in CheckLongPressHelper
75 } else if (mPendingCheckForLongPress != null && isStylusButtonPressed(ev)) { in onTouchEvent()
93 if (mPendingCheckForLongPress == null) { in postCheckForLongPress()
94 mPendingCheckForLongPress = this::triggerLongPress; in postCheckForLongPress()
96 mView.postDelayed(mPendingCheckForLongPress, in postCheckForLongPress()
135 if (mPendingCheckForLongPress != null) { in clearCallbacks()
136 mView.removeCallbacks(mPendingCheckForLongPress); in clearCallbacks()
137 mPendingCheckForLongPress = null; in clearCallbacks()
/aosp12/frameworks/base/core/java/android/widget/
H A DAbsListView.java578 private CheckForLongPress mPendingCheckForLongPress; field in AbsListView
3146 if (mPendingCheckForLongPress != null) { in onCancelPendingInputEvents()
3147 removeCallbacks(mPendingCheckForLongPress); in onCancelPendingInputEvents()
3521 if (mPendingCheckForLongPress == null) { in run()
3524 mPendingCheckForLongPress.setCoords(x, y); in run()
3525 mPendingCheckForLongPress.rememberWindowAttachCount(); in run()
3554 removeCallbacks(mPendingCheckForLongPress); in startScrollIfNeeded()
4081 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
4266 removeCallbacks(mPendingCheckForLongPress); in onTouchUp()
4309 removeCallbacks(mPendingCheckForLongPress); in onTouchCancel()
[all …]
/aosp12/frameworks/base/core/java/android/view/
H A DView.java4896 private CheckForLongPress mPendingCheckForLongPress; field in View
16191 if (mPendingCheckForLongPress != null) { in removeLongPressCallback()
16192 removeCallbacks(mPendingCheckForLongPress); in removeLongPressCallback()
16201 if (mPendingCheckForLongPress == null) { in hasPendingLongPressCallback()
27171 if (mPendingCheckForLongPress == null) { in checkForLongClick()
27172 mPendingCheckForLongPress = new CheckForLongPress(); in checkForLongClick()
27174 mPendingCheckForLongPress.setAnchor(x, y); in checkForLongClick()
27175 mPendingCheckForLongPress.rememberWindowAttachCount(); in checkForLongClick()
27176 mPendingCheckForLongPress.rememberPressedState(); in checkForLongClick()
27177 mPendingCheckForLongPress.setClassification(classification); in checkForLongClick()
[all …]
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt66904 Landroid/view/View;->mPendingCheckForLongPress:Landroid/view/View$CheckForLongPress;