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

/frameworks/base/packages/Keyguard/src/com/android/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.java541 private CheckForLongPress mPendingCheckForLongPress; field in class:AbsListView
3010 if (mPendingCheckForLongPress != null) {
3011 removeCallbacks(mPendingCheckForLongPress);
3301 if (mPendingCheckForLongPress == null) {
3302 mPendingCheckForLongPress = new CheckForLongPress();
3304 mPendingCheckForLongPress.rememberWindowAttachCount();
3305 postDelayed(mPendingCheckForLongPress, longPressTimeout);
3333 removeCallbacks(mPendingCheckForLongPress);
3787 mPendingCheckForTap : mPendingCheckForLongPress);
3833 mPendingCheckForTap : mPendingCheckForLongPress);
[all...]
/frameworks/base/core/java/android/view/
H A DView.java3333 private CheckForLongPress mPendingCheckForLongPress; field in class:View
9558 if (mPendingCheckForLongPress != null) {
9559 removeCallbacks(mPendingCheckForLongPress);
18511 if (mPendingCheckForLongPress == null) {
18512 mPendingCheckForLongPress = new CheckForLongPress();
18514 mPendingCheckForLongPress.rememberWindowAttachCount();
18515 postDelayed(mPendingCheckForLongPress,

Completed in 370 milliseconds