Searched refs:mActivePointerId (Results 26 - 28 of 28) sorted by relevance

12

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java1240 private int mActivePointerId; field in class:ListPopupWindow.ForwardingListener
1341 mActivePointerId = srcEvent.getPointerId(0);
1354 final int activePointerIndex = srcEvent.findPointerIndex(mActivePointerId);
1437 final boolean handled = dst.onForwardedEvent(dstEvent, mActivePointerId);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java641 private int mActivePointerId = INVALID_POINTER; field in class:AbsListView
645 * Used by {@link #mActivePointerId}.
3711 mActivePointerId = id;
3734 mActivePointerId = ev.getPointerId(0);
3797 int pointerIndex = ev.findPointerIndex(mActivePointerId);
3800 mActivePointerId = ev.getPointerId(pointerIndex);
3939 (velocityTracker.getYVelocity(mActivePointerId) * mVelocityScale);
3987 final int initialVelocity = (int) velocityTracker.getYVelocity(mActivePointerId);
4011 mActivePointerId = INVALID_POINTER;
4055 mActivePointerId
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4798 private int mActivePointerId = -1; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
4891 mActivePointerId = event.getPointerId(0);
4909 if (mActivePointerId < 0) {
4912 final int index = event.findPointerIndex(mActivePointerId);
4936 final float vx = mVelocityTracker.getXVelocity(mActivePointerId);
4937 final float vy = mVelocityTracker.getYVelocity(mActivePointerId);
4970 if (mActivePointerId >= 0) {
4971 mActivePointerId = -1;

Completed in 52 milliseconds

12