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()
584 private CheckForTap mPendingCheckForTap; field in AbsListView3143 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 …]
4892 private CheckForTap mPendingCheckForTap = null; field in View16023 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()
69599 Landroid/widget/AdapterViewAnimator;->mPendingCheckForTap:Ljava/lang/Runnable;