Searched refs:mPendingCheckForTap (Results 1 – 4 of 4) sorted by relevance
161 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()
582 private CheckForTap mPendingCheckForTap; field in AbsListView3151 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 …]
4791 private CheckForTap mPendingCheckForTap = null; field in View15412 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()
80705 Landroid/widget/AdapterViewAnimator;->mPendingCheckForTap:Ljava/lang/Runnable;