HomeSort by relevance Sort by last modified time
    Searched refs:mPendingCheckForShortPress (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWidget.java 44 CheckForShortPress mPendingCheckForShortPress = null;
190 if (mPendingCheckForShortPress == null) {
191 mPendingCheckForShortPress = new CheckForShortPress();
193 postDelayed(mPendingCheckForShortPress, 120);
200 if (mPendingCheckForShortPress != null) {
201 removeCallbacks(mPendingCheckForShortPress);
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWidget.java 45 CheckForShortPress mPendingCheckForShortPress = null;
206 if (mPendingCheckForShortPress == null) {
207 mPendingCheckForShortPress = new CheckForShortPress();
209 postDelayed(mPendingCheckForShortPress, 120);
216 if (mPendingCheckForShortPress != null) {
217 removeCallbacks(mPendingCheckForShortPress);

Completed in 843 milliseconds