Searched refs:HISTORY_CURRENT (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | MotionEvent.java | 1436 private static final int HISTORY_CURRENT = -0x80000000; field in MotionEvent 2014 return nativeGetEventTimeNanos(mNativePtr, HISTORY_CURRENT) / NS_PER_MS; in getEventTime() 2033 return nativeGetEventTimeNanos(mNativePtr, HISTORY_CURRENT); in getEventTimeNano() 2043 return nativeGetAxisValue(mNativePtr, AXIS_X, 0, HISTORY_CURRENT); in getX() 2053 return nativeGetAxisValue(mNativePtr, AXIS_Y, 0, HISTORY_CURRENT); in getY() 2063 return nativeGetAxisValue(mNativePtr, AXIS_PRESSURE, 0, HISTORY_CURRENT); in getPressure() 2073 return nativeGetAxisValue(mNativePtr, AXIS_SIZE, 0, HISTORY_CURRENT); in getSize() 2083 return nativeGetAxisValue(mNativePtr, AXIS_TOUCH_MAJOR, 0, HISTORY_CURRENT); in getTouchMajor() 2093 return nativeGetAxisValue(mNativePtr, AXIS_TOUCH_MINOR, 0, HISTORY_CURRENT); in getTouchMinor() 2103 return nativeGetAxisValue(mNativePtr, AXIS_TOOL_MAJOR, 0, HISTORY_CURRENT); in getToolMajor() [all …]
|
/frameworks/base/core/jni/ |
D | android_view_MotionEvent.cpp | 115 static const jint HISTORY_CURRENT = -0x80000000; variable 428 if (historyPos == HISTORY_CURRENT) { in android_view_MotionEvent_nativeGetPointerCoords() 521 if (historyPos == HISTORY_CURRENT) { in android_view_MotionEvent_nativeGetEventTimeNanos() 541 if (historyPos == HISTORY_CURRENT) { in android_view_MotionEvent_nativeGetRawAxisValue() 560 if (historyPos == HISTORY_CURRENT) { in android_view_MotionEvent_nativeGetAxisValue()
|