Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAdapterViewAnimator.java161 private Runnable mPendingCheckForTap; field in AdapterViewAnimator
625 if (mPendingCheckForTap == null) { in onTouchEvent()
626 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
629 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
644 handler.removeCallbacks(mPendingCheckForTap); in onTouchEvent()
DAbsListView.java554 private CheckForTap mPendingCheckForTap; field in AbsListView
3087 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()
3088 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()
3909 if (mPendingCheckForTap == null) { in onTouchDown()
3910 mPendingCheckForTap = new CheckForTap(); in onTouchDown()
3913 mPendingCheckForTap.x = ev.getX(); in onTouchDown()
3914 mPendingCheckForTap.y = ev.getY(); in onTouchDown()
3915 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()
3933 removeCallbacks(mPendingCheckForTap); in onTouchDown()
3976 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java4198 private CheckForTap mPendingCheckForTap = null; field in View
13031 if (mPendingCheckForTap == null) {
13032 mPendingCheckForTap = new CheckForTap();
13034 mPendingCheckForTap.x = event.getX();
13035 mPendingCheckForTap.y = event.getY();
13036 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
13127 if (mPendingCheckForTap != null) {
13129 removeCallbacks(mPendingCheckForTap);