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.java551 private CheckForTap mPendingCheckForTap; field in AbsListView
3079 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()
3080 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()
3901 if (mPendingCheckForTap == null) { in onTouchDown()
3902 mPendingCheckForTap = new CheckForTap(); in onTouchDown()
3905 mPendingCheckForTap.x = ev.getX(); in onTouchDown()
3906 mPendingCheckForTap.y = ev.getY(); in onTouchDown()
3907 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()
3925 removeCallbacks(mPendingCheckForTap); in onTouchDown()
3968 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()
[all …]
/frameworks/base/core/java/android/view/
DView.java3670 private CheckForTap mPendingCheckForTap = null; field in View
11168 if (mPendingCheckForTap == null) { in onTouchEvent()
11169 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()
11171 mPendingCheckForTap.x = event.getX(); in onTouchEvent()
11172 mPendingCheckForTap.y = event.getY(); in onTouchEvent()
11173 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()
11259 if (mPendingCheckForTap != null) { in removeTapCallback()
11261 removeCallbacks(mPendingCheckForTap); in removeTapCallback()