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

/packages/apps/Launcher2/src/com/android/launcher2/
H A DCheckLongPressHelper.java24 private CheckForLongPress mPendingCheckForLongPress; field in class:CheckLongPressHelper
45 if (mPendingCheckForLongPress == null) {
46 mPendingCheckForLongPress = new CheckForLongPress();
48 mView.postDelayed(mPendingCheckForLongPress, LauncherApplication.getLongPressTimeout());
53 if (mPendingCheckForLongPress != null) {
54 mView.removeCallbacks(mPendingCheckForLongPress);
55 mPendingCheckForLongPress = null;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DCheckLongPressHelper.java24 private CheckForLongPress mPendingCheckForLongPress; field in class:CheckLongPressHelper
45 if (mPendingCheckForLongPress == null) {
46 mPendingCheckForLongPress = new CheckForLongPress();
48 mView.postDelayed(mPendingCheckForLongPress,
54 if (mPendingCheckForLongPress != null) {
55 mView.removeCallbacks(mPendingCheckForLongPress);
56 mPendingCheckForLongPress = null;

Completed in 377 milliseconds