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

/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java161 private Runnable mPendingCheckForTap; field in class:AdapterViewAnimator
625 if (mPendingCheckForTap == null) {
626 mPendingCheckForTap = new CheckForTap();
629 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
644 handler.removeCallbacks(mPendingCheckForTap);
H A DAbsListView.java555 private CheckForTap mPendingCheckForTap; field in class:AbsListView
3089 if (mPendingCheckForTap != null) {
3090 removeCallbacks(mPendingCheckForTap);
3912 if (mPendingCheckForTap == null) {
3913 mPendingCheckForTap = new CheckForTap();
3916 mPendingCheckForTap.x = ev.getX();
3917 mPendingCheckForTap.y = ev.getY();
3918 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
3936 removeCallbacks(mPendingCheckForTap);
3979 mPendingCheckForTap
[all...]
/frameworks/base/core/java/android/view/
H A DView.java4469 private CheckForTap mPendingCheckForTap = null; field in class:View
13832 if (mPendingCheckForTap == null) {
13833 mPendingCheckForTap = new CheckForTap();
13835 mPendingCheckForTap.x = event.getX();
13836 mPendingCheckForTap.y = event.getY();
13837 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
13928 if (mPendingCheckForTap != null) {
13930 removeCallbacks(mPendingCheckForTap);
[all...]

Completed in 173 milliseconds