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.java554 private CheckForTap mPendingCheckForTap; field in class:AbsListView
3080 if (mPendingCheckForTap != null) {
3081 removeCallbacks(mPendingCheckForTap);
3902 if (mPendingCheckForTap == null) {
3903 mPendingCheckForTap = new CheckForTap();
3906 mPendingCheckForTap.x = ev.getX();
3907 mPendingCheckForTap.y = ev.getY();
3908 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
3926 removeCallbacks(mPendingCheckForTap);
3969 mPendingCheckForTap
[all...]
/frameworks/base/core/java/android/view/
H A DView.java4236 private CheckForTap mPendingCheckForTap = null; field in class:View
13086 if (mPendingCheckForTap == null) {
13087 mPendingCheckForTap = new CheckForTap();
13089 mPendingCheckForTap.x = event.getX();
13090 mPendingCheckForTap.y = event.getY();
13091 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
13182 if (mPendingCheckForTap != null) {
13184 removeCallbacks(mPendingCheckForTap);

Completed in 131 milliseconds