Searched defs:findPointerIndex (Results 1 - 4 of 4) 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
42 public int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompat.BaseMotionEventVersionImpl
82 public int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompat.EclairMotionEventVersionImpl
83 return MotionEventCompatEclair.findPointerIndex(event, pointerId);
196 * Call {@link MotionEvent#findPointerIndex(int)}.
200 public static int findPointerIndex(MotionEvent event, int pointerId) { method in class:MotionEventCompat
201 return IMPL.findPointerIndex(event, pointerId);
/frameworks/base/libs/androidfw/
H A DInput.cpp393 ssize_t MotionEvent::findPointerIndex(int32_t pointerId) const { function in class:android::MotionEvent
/frameworks/base/core/java/android/view/
H A DMotionEvent.java68 * Then for successive motion events, use the {@link #findPointerIndex(int)} method
1965 public final int findPointerIndex(int pointerId) { method in class:MotionEvent

Completed in 499 milliseconds