Searched defs: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.java551 private CheckForTap mPendingCheckForTap; field in class:AbsListView
3079 if (mPendingCheckForTap != null) {
3080 removeCallbacks(mPendingCheckForTap);
3901 if (mPendingCheckForTap == null) {
3902 mPendingCheckForTap = new CheckForTap();
3905 mPendingCheckForTap.x = ev.getX();
3906 mPendingCheckForTap.y = ev.getY();
3907 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
3925 removeCallbacks(mPendingCheckForTap);
3968 mPendingCheckForTap
[all...]
/frameworks/base/core/java/android/view/
H A DView.java3670 private CheckForTap mPendingCheckForTap = null; field in class:View
11168 if (mPendingCheckForTap == null) {
11169 mPendingCheckForTap = new CheckForTap();
11171 mPendingCheckForTap.x = event.getX();
11172 mPendingCheckForTap.y = event.getY();
11173 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
11259 if (mPendingCheckForTap != null) {
11261 removeCallbacks(mPendingCheckForTap);

Completed in 214 milliseconds