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.java31 public int getPointerId(MotionEvent event, int pointerIndex); method in interface:MotionEventCompat.MotionEventVersionImpl
49 public int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompat.BaseMotionEventVersionImpl
81 public int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompat.EclairMotionEventVersionImpl
82 return MotionEventCompatEclair.getPointerId(event, pointerIndex);
170 * Call {@link MotionEvent#getPointerId(int)}.
174 public static int getPointerId(MotionEvent event, int pointerIndex) { method in class:MotionEventCompat
175 return IMPL.getPointerId(event, pointerIndex);
/frameworks/base/include/ui/
H A DInput.h391 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));
310 * get its identifier with {@link #getPointerId(int)} and the actual
1724 * The index may be used with {@link #getPointerId(int)},
1926 public final int getPointerId(int pointerIndex) { method in class:MotionEvent
1964 * <em>index</em> (use {@link #getPointerId(int)} to find the pointer
1979 * <em>index</em> (use {@link #getPointerId(int)} to find the pointer
1994 * <em>index</em> (use {@link #getPointerId(in
[all...]

Completed in 353 milliseconds