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

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DCheckLongPressHelper.java26 private CheckForLongPress mPendingCheckForLongPress; field in class:CheckLongPressHelper
54 if (mPendingCheckForLongPress == null) {
55 mPendingCheckForLongPress = new CheckForLongPress();
57 mView.postDelayed(mPendingCheckForLongPress, mLongPressTimeout);
73 if (mPendingCheckForLongPress != null) {
74 mView.removeCallbacks(mPendingCheckForLongPress);
75 mPendingCheckForLongPress = null;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java523 private CheckForLongPress mPendingCheckForLongPress; field in class:AbsListView
2982 if (mPendingCheckForLongPress == null) {
2983 mPendingCheckForLongPress = new CheckForLongPress();
2985 mPendingCheckForLongPress.rememberWindowAttachCount();
2986 postDelayed(mPendingCheckForLongPress, longPressTimeout);
3018 handler.removeCallbacks(mPendingCheckForLongPress);
3397 mPendingCheckForTap : mPendingCheckForLongPress);
3521 handler.removeCallbacks(mPendingCheckForLongPress);
3566 handler.removeCallbacks(mPendingCheckForLongPress);
/frameworks/base/core/java/android/view/
H A DView.java3032 private CheckForLongPress mPendingCheckForLongPress; field in class:View
8300 if (mPendingCheckForLongPress != null) {
8301 removeCallbacks(mPendingCheckForLongPress);
16439 if (mPendingCheckForLongPress == null) {
16440 mPendingCheckForLongPress = new CheckForLongPress();
16442 mPendingCheckForLongPress.rememberWindowAttachCount();
16443 postDelayed(mPendingCheckForLongPress,

Completed in 97 milliseconds