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
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);
/frameworks/base/libs/ui/
H A DInput.cpp500 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
1958 public final int findPointerIndex(int pointerId) { method in class:MotionEvent

Completed in 1011 milliseconds