Searched refs:mPendingCheckForTap (Results 1 – 3 of 3) sorted by relevance
163 private Runnable mPendingCheckForTap; field in AdapterViewAnimator628 if (mPendingCheckForTap == null) { in onTouchEvent()629 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()632 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()647 handler.removeCallbacks(mPendingCheckForTap); in onTouchEvent()
546 private CheckForTap mPendingCheckForTap; field in AbsListView3007 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()3008 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()3725 if (mPendingCheckForTap == null) { in onTouchDown()3726 mPendingCheckForTap = new CheckForTap(); in onTouchDown()3729 mPendingCheckForTap.x = ev.getX(); in onTouchDown()3730 mPendingCheckForTap.y = ev.getY(); in onTouchDown()3731 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()3749 removeCallbacks(mPendingCheckForTap); in onTouchDown()3787 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()[all …]
3334 private CheckForTap mPendingCheckForTap = null; field in View9498 if (mPendingCheckForTap == null) {9499 mPendingCheckForTap = new CheckForTap();9501 mPendingCheckForTap.x = event.getX();9502 mPendingCheckForTap.y = event.getY();9503 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());9586 if (mPendingCheckForTap != null) {9588 removeCallbacks(mPendingCheckForTap);