Searched refs:mPendingCheckForLongPress (Results 1 – 4 of 4) sorted by relevance
38 private Runnable mPendingCheckForLongPress; field in CheckLongPressHelper75 } 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()
578 private CheckForLongPress mPendingCheckForLongPress; field in AbsListView3146 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 …]
4896 private CheckForLongPress mPendingCheckForLongPress; field in View16191 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 …]
66904 Landroid/view/View;->mPendingCheckForLongPress:Landroid/view/View$CheckForLongPress;