Searched defs:historyPos (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp165 static bool validateHistoryPos(JNIEnv* env, jint historyPos, size_t historySize) { argument
166 if (historyPos < 0 || size_t(historyPos) >= historySize) {
168 "historyPos out of range");
581 jlong nativePtr, jint historyPos) {
583 if (historyPos == HISTORY_CURRENT) {
587 if (!validateHistoryPos(env, historyPos, historySize)) {
590 return event->getHistoricalEventTime(historyPos);
595 jlong nativePtr, jint axis, jint pointerIndex, jint historyPos) {
602 if (historyPos
580 android_view_MotionEvent_nativeGetEventTimeNanos(JNIEnv* env, jclass clazz, jlong nativePtr, jint historyPos) argument
594 android_view_MotionEvent_nativeGetRawAxisValue(JNIEnv* env, jclass clazz, jlong nativePtr, jint axis, jint pointerIndex, jint historyPos) argument
613 android_view_MotionEvent_nativeGetAxisValue(JNIEnv* env, jclass clazz, jlong nativePtr, jint axis, jint pointerIndex, jint historyPos) argument
632 android_view_MotionEvent_nativeGetPointerCoords(JNIEnv* env, jclass clazz, jlong nativePtr, jint pointerIndex, jint historyPos, jobject outPointerCoordsObj) argument
[all...]
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1374 private static native long nativeGetEventTimeNanos(long nativePtr, int historyPos); argument
1376 int axis, int pointerIndex, int historyPos);
1378 int axis, int pointerIndex, int historyPos);
1380 int pointerIndex, int historyPos, PointerCoords outPointerCoords);
2844 final int historyPos = (h == historySize ? HISTORY_CURRENT : h);
2847 nativeGetPointerCoords(event.mNativePtr, i, historyPos, pc[i]);
2850 final long eventTimeNanos = nativeGetEventTimeNanos(event.mNativePtr, historyPos);
2987 final int historyPos = h == historySize ? HISTORY_CURRENT : h;
2990 nativeGetPointerCoords(mNativePtr, map[i], historyPos, pc[i]);
2993 final long eventTimeNanos = nativeGetEventTimeNanos(mNativePtr, historyPos);
1375 nativeGetRawAxisValue(long nativePtr, int axis, int pointerIndex, int historyPos) argument
1377 nativeGetAxisValue(long nativePtr, int axis, int pointerIndex, int historyPos) argument
1379 nativeGetPointerCoords(long nativePtr, int pointerIndex, int historyPos, PointerCoords outPointerCoords) argument
[all...]

Completed in 109 milliseconds