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.java584 private CheckForTap mPendingCheckForTap; field in AbsListView
3143 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()
3144 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()
4015 if (mPendingCheckForTap == null) { in onTouchDown()
4016 mPendingCheckForTap = new CheckForTap(); in onTouchDown()
4019 mPendingCheckForTap.x = ev.getX(); in onTouchDown()
4020 mPendingCheckForTap.y = ev.getY(); in onTouchDown()
4021 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()
4039 removeCallbacks(mPendingCheckForTap); in onTouchDown()
4091 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java4892 private CheckForTap mPendingCheckForTap = null; field in View
16023 if (mPendingCheckForTap == null) { in onTouchEvent()
16024 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
16026 mPendingCheckForTap.x = event.getX(); in onTouchEvent()
16027 mPendingCheckForTap.y = event.getY(); in onTouchEvent()
16028 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
16176 if (mPendingCheckForTap != null) { in removeTapCallback()
16178 removeCallbacks(mPendingCheckForTap); in removeTapCallback()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt69599 Landroid/widget/AdapterViewAnimator;->mPendingCheckForTap:Ljava/lang/Runnable;