Home
last modified time | relevance | path

Searched refs:mPendingCheckForTap (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
DAdapterViewAnimator.java163 private Runnable mPendingCheckForTap; field in AdapterViewAnimator
628 if (mPendingCheckForTap == null) { in onTouchEvent()
629 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
632 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
647 handler.removeCallbacks(mPendingCheckForTap); in onTouchEvent()
DAbsListView.java546 private CheckForTap mPendingCheckForTap; field in AbsListView
3007 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()
3008 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()
3725 if (mPendingCheckForTap == null) { in onTouchDown()
3726 mPendingCheckForTap = new CheckForTap(); in onTouchDown()
3729 mPendingCheckForTap.x = ev.getX(); in onTouchDown()
3730 mPendingCheckForTap.y = ev.getY(); in onTouchDown()
3731 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()
3749 removeCallbacks(mPendingCheckForTap); in onTouchDown()
3787 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java3334 private CheckForTap mPendingCheckForTap = null; field in View
9498 if (mPendingCheckForTap == null) {
9499 mPendingCheckForTap = new CheckForTap();
9501 mPendingCheckForTap.x = event.getX();
9502 mPendingCheckForTap.y = event.getY();
9503 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
9586 if (mPendingCheckForTap != null) {
9588 removeCallbacks(mPendingCheckForTap);