Searched refs:mPendingCheckForTap (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java163 private Runnable mPendingCheckForTap; field in class:AdapterViewAnimator
623 if (mPendingCheckForTap == null) {
624 mPendingCheckForTap = new CheckForTap();
627 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
642 handler.removeCallbacks(mPendingCheckForTap);
H A DAbsListView.java528 private Runnable mPendingCheckForTap; field in class:AbsListView
3300 if (mPendingCheckForTap == null) {
3301 mPendingCheckForTap = new CheckForTap();
3303 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
3331 removeCallbacks(mPendingCheckForTap);
3397 mPendingCheckForTap : mPendingCheckForLongPress);
/frameworks/base/core/java/android/view/
H A DView.java3033 private CheckForTap mPendingCheckForTap = null; field in class:View
8242 if (mPendingCheckForTap == null) {
8243 mPendingCheckForTap = new CheckForTap();
8245 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
8328 if (mPendingCheckForTap != null) {
8330 removeCallbacks(mPendingCheckForTap);

Completed in 604 milliseconds