Searched defs:getPointerId (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v4/eclair/android/support/v4/view/
H A DMotionEventCompatEclair.java28 public static int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompatEclair
29 return event.getPointerId(pointerIndex);
/frameworks/support/v4/java/android/support/v4/view/
H A DMotionEventCompat.java32 public int getPointerId(MotionEvent event, int pointerIndex); method in interface:MotionEventCompat.MotionEventVersionImpl
55 public int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompat.BaseMotionEventVersionImpl
111 public int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompat.EclairMotionEventVersionImpl
112 return MotionEventCompatEclair.getPointerId(event, pointerIndex);
482 * Call {@link MotionEvent#getPointerId(int)}.
486 public static int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompat
487 return IMPL.getPointerId(event, pointerIndex);
549 * (use {@link #getPointerId(MotionEvent, int)} to find the pointer identifier for this index).
/frameworks/native/include/input/
H A DInput.h425 inline int32_t getPointerId(size_t pointerIndex) const { function in class:android::MotionEvent
/frameworks/base/core/java/android/view/
H A DMotionEvent.java58 * {@link #getPointerId(int)}, {@link #getToolType(int)}, and many others. Most of these
66 * remains active. Use the {@link #getPointerId(int)} method to obtain the
99 * ev.getPointerId(p), ev.getHistoricalX(p, h), ev.getHistoricalY(p, h));
105 * ev.getPointerId(p), ev.getX(p), ev.getY(p));
336 * get its identifier with {@link #getPointerId(int)} and the actual
1846 * The index may be used with {@link #getPointerId(int)},
2076 public final int getPointerId(int pointerIndex) { method in class:MotionEvent
2112 * <em>index</em> (use {@link #getPointerId(int)} to find the pointer
2127 * <em>index</em> (use {@link #getPointerId(int)} to find the pointer
2142 * <em>index</em> (use {@link #getPointerId(in
[all...]

Completed in 144 milliseconds