Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAdapterViewAnimator.java161 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.java582 private CheckForTap mPendingCheckForTap; field in AbsListView
3151 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()
3152 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()
3976 if (mPendingCheckForTap == null) { in onTouchDown()
3977 mPendingCheckForTap = new CheckForTap(); in onTouchDown()
3980 mPendingCheckForTap.x = ev.getX(); in onTouchDown()
3981 mPendingCheckForTap.y = ev.getY(); in onTouchDown()
3982 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()
4000 removeCallbacks(mPendingCheckForTap); in onTouchDown()
4043 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java4791 private CheckForTap mPendingCheckForTap = null; field in View
15412 if (mPendingCheckForTap == null) { in onTouchEvent()
15413 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
15415 mPendingCheckForTap.x = event.getX(); in onTouchEvent()
15416 mPendingCheckForTap.y = event.getY(); in onTouchEvent()
15417 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
15567 if (mPendingCheckForTap != null) { in removeTapCallback()
15569 removeCallbacks(mPendingCheckForTap); in removeTapCallback()
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt80705 Landroid/widget/AdapterViewAnimator;->mPendingCheckForTap:Ljava/lang/Runnable;