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()
554 private CheckForTap mPendingCheckForTap; field in AbsListView3087 if (mPendingCheckForTap != null) { in onCancelPendingInputEvents()3088 removeCallbacks(mPendingCheckForTap); in onCancelPendingInputEvents()3909 if (mPendingCheckForTap == null) { in onTouchDown()3910 mPendingCheckForTap = new CheckForTap(); in onTouchDown()3913 mPendingCheckForTap.x = ev.getX(); in onTouchDown()3914 mPendingCheckForTap.y = ev.getY(); in onTouchDown()3915 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout()); in onTouchDown()3933 removeCallbacks(mPendingCheckForTap); in onTouchDown()3976 mPendingCheckForTap : mPendingCheckForLongPress); in onTouchMove()[all …]
4198 private CheckForTap mPendingCheckForTap = null; field in View13031 if (mPendingCheckForTap == null) {13032 mPendingCheckForTap = new CheckForTap();13034 mPendingCheckForTap.x = event.getX();13035 mPendingCheckForTap.y = event.getY();13036 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());13127 if (mPendingCheckForTap != null) {13129 removeCallbacks(mPendingCheckForTap);