HomeSort by relevance Sort by last modified time
    Searched defs:mPendingCheckForLongPress (Results 1 - 4 of 4) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
CheckLongPressHelper.java 24 private CheckForLongPress mPendingCheckForLongPress;
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/
CheckLongPressHelper.java 31 private CheckForLongPress mPendingCheckForLongPress;
70 if (mPendingCheckForLongPress == null) {
71 mPendingCheckForLongPress = new CheckForLongPress();
73 mView.postDelayed(mPendingCheckForLongPress, mLongPressTimeout);
78 if (mPendingCheckForLongPress != null) {
79 mView.removeCallbacks(mPendingCheckForLongPress);
80 mPendingCheckForLongPress = null;
  /frameworks/base/core/java/android/widget/
AbsListView.java 550 private CheckForLongPress mPendingCheckForLongPress;
    [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]

Completed in 175 milliseconds