Searched defs:mPendingCheckForLongPress (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/view/
H A DView.java3034 private CheckForLongPress mPendingCheckForLongPress; field in class:View
8307 if (mPendingCheckForLongPress != null) {
8308 removeCallbacks(mPendingCheckForLongPress);
16444 if (mPendingCheckForLongPress == null) {
16445 mPendingCheckForLongPress = new CheckForLongPress();
16447 mPendingCheckForLongPress.rememberWindowAttachCount();
16448 postDelayed(mPendingCheckForLongPress,
/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/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;

Completed in 85 milliseconds