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

/frameworks/base/core/java/android/widget/
H A DAbsListView.java549 private CheckForLongPress mPendingCheckForLongPress; field in class:AbsListView
3083 if (mPendingCheckForLongPress != null) {
3084 removeCallbacks(mPendingCheckForLongPress);
3456 if (mPendingCheckForLongPress == null) {
3457 mPendingCheckForLongPress = new CheckForLongPress();
3459 mPendingCheckForLongPress.setCoords(x, y);
3460 mPendingCheckForLongPress.rememberWindowAttachCount();
3461 postDelayed(mPendingCheckForLongPress, longPressTimeout);
3489 removeCallbacks(mPendingCheckForLongPress);
3969 mPendingCheckForTap : mPendingCheckForLongPress);
[all...]
/frameworks/base/core/java/android/view/
H A DView.java4235 private CheckForLongPress mPendingCheckForLongPress; field in class:View
13154 if (mPendingCheckForLongPress != null) {
13155 removeCallbacks(mPendingCheckForLongPress);
23216 if (mPendingCheckForLongPress == null) {
23217 mPendingCheckForLongPress = new CheckForLongPress();
23219 mPendingCheckForLongPress.setAnchor(x, y);
23220 mPendingCheckForLongPress.rememberWindowAttachCount();
23221 mPendingCheckForLongPress.rememberPressedState();
23222 postDelayed(mPendingCheckForLongPress,

Completed in 105 milliseconds