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
3021 if (mPendingCheckForLongPress == null) {
3022 mPendingCheckForLongPress = new CheckForLongPress();
3024 mPendingCheckForLongPress.rememberWindowAttachCount();
3025 postDelayed(mPendingCheckForLongPress, longPressTimeout);
3057 handler.removeCallbacks(mPendingCheckForLongPress);
3436 mPendingCheckForTap : mPendingCheckForLongPress);
3561 handler.removeCallbacks(mPendingCheckForLongPress);
3606 handler.removeCallbacks(mPendingCheckForLongPress);
/frameworks/base/core/java/android/view/
H A DView.java3056 private CheckForLongPress mPendingCheckForLongPress; field in class:View
8447 if (mPendingCheckForLongPress != null) {
8448 removeCallbacks(mPendingCheckForLongPress);
16783 if (mPendingCheckForLongPress == null) {
16784 mPendingCheckForLongPress = new CheckForLongPress();
16786 mPendingCheckForLongPress.rememberWindowAttachCount();
16787 postDelayed(mPendingCheckForLongPress,

Completed in 154 milliseconds