Searched defs:getPointerCount (Results 1 - 4 of 4) sorted by path

/frameworks/base/core/java/android/view/
H A DMotionEvent.java61 * returned by {@link #getPointerCount()}.
94 * final int pointerCount = ev.getPointerCount();
1956 public final int getPointerCount() { method in class:MotionEvent
1966 * (the first pointer that is down) to {@link #getPointerCount()}-1.
1978 * (the first pointer that is down) to {@link #getPointerCount()}-1.
2009 * (the first pointer that is down) to {@link #getPointerCount()}-1.
2024 * (the first pointer that is down) to {@link #getPointerCount()}-1.
2041 * (the first pointer that is down) to {@link #getPointerCount()}-1.
2059 * (the first pointer that is down) to {@link #getPointerCount()}-1.
2073 * (the first pointer that is down) to {@link #getPointerCount()}
[all...]
/frameworks/native/include/input/
H A DInput.h382 inline size_t getPointerCount() const { return mPointerProperties.size(); } function in class:android::MotionEvent
/frameworks/support/v4/eclair/android/support/v4/view/
H A DMotionEventCompatEclair.java37 public static int getPointerCount(MotionEvent event) { method in class:MotionEventCompatEclair
38 return event.getPointerCount();
/frameworks/support/v4/java/android/support/v4/view/
H A DMotionEventCompat.java34 public int getPointerCount(MotionEvent event); method in interface:MotionEventCompat.MotionEventVersionImpl
72 public int getPointerCount(MotionEvent event) { method in class:MotionEventCompat.BaseMotionEventVersionImpl
98 public int getPointerCount(MotionEvent event) { method in class:MotionEventCompat.EclairMotionEventVersionImpl
99 return MotionEventCompatEclair.getPointerCount(event);
235 public static int getPointerCount(MotionEvent event) { method in class:MotionEventCompat
236 return IMPL.getPointerCount(event);

Completed in 1162 milliseconds