Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAdapterViewAnimator.java160 private Runnable mPendingCheckForTap; field in AdapterViewAnimator
611 if (mPendingCheckForTap == null) { in onTouchEvent()
612 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
615 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
630 handler.removeCallbacks(mPendingCheckForTap); in onTouchEvent()
DAbsListView.java515 private Runnable mPendingCheckForTap; field in AbsListView
3052 if (mPendingCheckForTap == null) { in onTouchEvent()
3053 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
3055 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
3083 removeCallbacks(mPendingCheckForTap); in onTouchEvent()
3142 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchEvent()
/frameworks/base/core/java/android/view/
DView.java2426 private CheckForTap mPendingCheckForTap = null; field in View
6465 if (mPendingCheckForTap == null) {
6466 mPendingCheckForTap = new CheckForTap();
6468 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
6554 if (mPendingCheckForTap != null) {
6556 removeCallbacks(mPendingCheckForTap);