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

/frameworks/base/core/java/android/widget/
H A DAbsListView.java545 private CheckForLongPress mPendingCheckForLongPress; field in class:AbsListView
2999 if (mPendingCheckForLongPress != null) {
3000 removeCallbacks(mPendingCheckForLongPress);
3307 if (mPendingCheckForLongPress == null) {
3308 mPendingCheckForLongPress = new CheckForLongPress();
3310 mPendingCheckForLongPress.rememberWindowAttachCount();
3311 postDelayed(mPendingCheckForLongPress, longPressTimeout);
3339 removeCallbacks(mPendingCheckForLongPress);
3806 mPendingCheckForTap : mPendingCheckForLongPress);
3852 mPendingCheckForTap : mPendingCheckForLongPress);
[all...]
/frameworks/base/core/java/android/view/
H A DView.java3515 private CheckForLongPress mPendingCheckForLongPress; field in class:View
10422 if (mPendingCheckForLongPress != null) {
10423 removeCallbacks(mPendingCheckForLongPress);
19763 if (mPendingCheckForLongPress == null) {
19764 mPendingCheckForLongPress = new CheckForLongPress();
19766 mPendingCheckForLongPress.rememberWindowAttachCount();
19767 postDelayed(mPendingCheckForLongPress,

Completed in 121 milliseconds