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

/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java160 private Runnable mPendingCheckForTap; field in class:AdapterViewAnimator
611 if (mPendingCheckForTap == null) {
612 mPendingCheckForTap = new CheckForTap();
615 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
630 handler.removeCallbacks(mPendingCheckForTap);
H A DAbsListView.java515 private Runnable mPendingCheckForTap; field in class:AbsListView
3052 if (mPendingCheckForTap == null) {
3053 mPendingCheckForTap = new CheckForTap();
3055 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
3083 removeCallbacks(mPendingCheckForTap);
3142 mPendingCheckForTap : mPendingCheckForLongPress);
/frameworks/base/core/java/android/view/
H A DView.java2431 private CheckForTap mPendingCheckForTap = null; field in class:View
6526 if (mPendingCheckForTap == null) {
6527 mPendingCheckForTap = new CheckForTap();
6529 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
6615 if (mPendingCheckForTap != null) {
6617 removeCallbacks(mPendingCheckForTap);

Completed in 85 milliseconds