Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DCheckLongPressHelper.java43 private Runnable mPendingCheckForLongPress; field in CheckLongPressHelper
101 } else if (mPendingCheckForLongPress != null && isStylusButtonPressed(ev)) { in onTouchEvent()
119 if (mPendingCheckForLongPress == null) { in postCheckForLongPress()
120 mPendingCheckForLongPress = this::triggerLongPress; in postCheckForLongPress()
122 mView.postDelayed(mPendingCheckForLongPress, in postCheckForLongPress()
162 if (mPendingCheckForLongPress != null) { in clearCallbacks()
163 mView.removeCallbacks(mPendingCheckForLongPress); in clearCallbacks()
164 mPendingCheckForLongPress = null; in clearCallbacks()