Searched refs:mPendingCheckForTap (Results 1 – 3 of 3) sorted by relevance
161 private Runnable mPendingCheckForTap; field in AdapterViewAnimator625 if (mPendingCheckForTap == null) { in onTouchEvent()626 mPendingCheckForTap = new CheckForTap(); in onTouchEvent()629 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchEvent()644 handler.removeCallbacks(mPendingCheckForTap); in onTouchEvent()
551 private CheckForTap mPendingCheckForTap; field in AbsListView3079 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 …]
3670 private CheckForTap mPendingCheckForTap = null; field in View11168 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()