Searched refs:findPointerIndex (Results 1 - 13 of 13) sorted by relevance

/frameworks/support/v4/eclair/android/support/v4/view/
H A DMotionEventCompatEclair.java25 public static int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompatEclair
26 return event.findPointerIndex(pointerId);
/frameworks/support/v4/java/android/support/v4/view/
H A DMotionEventCompat.java30 public int findPointerIndex(MotionEvent event, int pointerId); method in interface:MotionEventCompat.MotionEventVersionImpl
41 public int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompat.BaseMotionEventVersionImpl
77 public int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompat.EclairMotionEventVersionImpl
78 return MotionEventCompatEclair.findPointerIndex(event, pointerId);
161 * Call {@link MotionEvent#findPointerIndex(int)}.
165 public static int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompat
166 return IMPL.findPointerIndex(event, pointerId);
H A DViewPager.java1338 final int pointerIndex = MotionEventCompat.findPointerIndex(ev, activePointerId);
1461 final int pointerIndex = MotionEventCompat.findPointerIndex(ev, mActivePointerId);
1477 final int activePointerIndex = MotionEventCompat.findPointerIndex(
1522 MotionEventCompat.findPointerIndex(ev, mActivePointerId);
1552 MotionEventCompat.findPointerIndex(ev, mActivePointerId));
/frameworks/base/core/java/android/view/
H A DScaleGestureDetector.java219 int index0 = event.findPointerIndex(mActiveId0);
272 int index0 = event.findPointerIndex(mActiveId0);
273 int index1 = event.findPointerIndex(mActiveId1);
341 final int index = event.findPointerIndex(actionId == mActiveId0 ?
377 int index0 = event.findPointerIndex(mActiveId0);
440 final int index = event.findPointerIndex(activeId);
490 final int otherActiveIndex = ev.findPointerIndex(otherActiveId);
543 final int prevIndex0 = prev.findPointerIndex(mActiveId0);
544 final int prevIndex1 = prev.findPointerIndex(mActiveId1);
545 final int currIndex0 = curr.findPointerIndex(mActiveId
[all...]
H A DMotionEvent.java68 * Then for successive motion events, use the {@link #findPointerIndex(int)} method
1958 public final int findPointerIndex(int pointerId) { method in class:MotionEvent
/frameworks/base/services/java/com/android/server/accessibility/
H A DTouchExplorer.java251 final int pointerIndex = event.findPointerIndex(pointerId);
395 final int pointerIndex = event.findPointerIndex(pointerId);
768 final int firstPtrIndex = event.findPointerIndex(pointerIds[0]);
769 final int secondPtrIndex = event.findPointerIndex(pointerIds[1]);
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java462 final int pointerIndex = ev.findPointerIndex(activePointerId);
519 mLastMotionX = ev.getX(ev.findPointerIndex(mActivePointerId));
560 final int activePointerIndex = ev.findPointerIndex(mActivePointerId);
H A DScrollView.java474 final int pointerIndex = ev.findPointerIndex(activePointerId);
574 final int activePointerIndex = ev.findPointerIndex(mActivePointerId);
652 mLastMotionY = ev.getY(ev.findPointerIndex(mActivePointerId));
H A DStackView.java622 int pointerIndex = ev.findPointerIndex(mActivePointerId);
704 int pointerIndex = ev.findPointerIndex(mActivePointerId);
802 int pointerIndex = ev.findPointerIndex(mActivePointerId);
H A DAbsListView.java3090 int pointerIndex = ev.findPointerIndex(mActivePointerId);
3531 int pointerIndex = ev.findPointerIndex(mActivePointerId);
/frameworks/base/include/ui/
H A DInput.h520 ssize_t findPointerIndex(int32_t pointerId) const;
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp575 return jint(event->findPointerIndex(pointerId));
/frameworks/base/libs/ui/
H A DInput.cpp500 ssize_t MotionEvent::findPointerIndex(int32_t pointerId) const { function in class:android::MotionEvent

Completed in 286 milliseconds