Lines Matching defs:pos

1408     // Private value for history pos that obtains the current sample.
2431 * @param pos Which historical value to return; must be less than
2440 public final long getHistoricalEventTime(int pos) {
2441 return nativeGetEventTimeNanos(mNativePtr, pos) / NS_PER_MS;
2454 * @param pos Which historical value to return; must be less than
2466 public final long getHistoricalEventTimeNano(int pos) {
2467 return nativeGetEventTimeNanos(mNativePtr, pos);
2474 * @param pos Which historical value to return; must be less than
2481 public final float getHistoricalX(int pos) {
2482 return nativeGetAxisValue(mNativePtr, AXIS_X, 0, pos);
2489 * @param pos Which historical value to return; must be less than
2496 public final float getHistoricalY(int pos) {
2497 return nativeGetAxisValue(mNativePtr, AXIS_Y, 0, pos);
2504 * @param pos Which historical value to return; must be less than
2511 public final float getHistoricalPressure(int pos) {
2512 return nativeGetAxisValue(mNativePtr, AXIS_PRESSURE, 0, pos);
2519 * @param pos Which historical value to return; must be less than
2526 public final float getHistoricalSize(int pos) {
2527 return nativeGetAxisValue(mNativePtr, AXIS_SIZE, 0, pos);
2534 * @param pos Which historical value to return; must be less than
2541 public final float getHistoricalTouchMajor(int pos) {
2542 return nativeGetAxisValue(mNativePtr, AXIS_TOUCH_MAJOR, 0, pos);
2549 * @param pos Which historical value to return; must be less than
2556 public final float getHistoricalTouchMinor(int pos) {
2557 return nativeGetAxisValue(mNativePtr, AXIS_TOUCH_MINOR, 0, pos);
2564 * @param pos Which historical value to return; must be less than
2571 public final float getHistoricalToolMajor(int pos) {
2572 return nativeGetAxisValue(mNativePtr, AXIS_TOOL_MAJOR, 0, pos);
2579 * @param pos Which historical value to return; must be less than
2586 public final float getHistoricalToolMinor(int pos) {
2587 return nativeGetAxisValue(mNativePtr, AXIS_TOOL_MINOR, 0, pos);
2594 * @param pos Which historical value to return; must be less than
2601 public final float getHistoricalOrientation(int pos) {
2602 return nativeGetAxisValue(mNativePtr, AXIS_ORIENTATION, 0, pos);
2610 * @param pos Which historical value to return; must be less than
2618 public final float getHistoricalAxisValue(int axis, int pos) {
2619 return nativeGetAxisValue(mNativePtr, axis, 0, pos);
2629 * @param pos Which historical value to return; must be less than
2636 public final float getHistoricalX(int pointerIndex, int pos) {
2637 return nativeGetAxisValue(mNativePtr, AXIS_X, pointerIndex, pos);
2647 * @param pos Which historical value to return; must be less than
2654 public final float getHistoricalY(int pointerIndex, int pos) {
2655 return nativeGetAxisValue(mNativePtr, AXIS_Y, pointerIndex, pos);
2665 * @param pos Which historical value to return; must be less than
2672 public final float getHistoricalPressure(int pointerIndex, int pos) {
2673 return nativeGetAxisValue(mNativePtr, AXIS_PRESSURE, pointerIndex, pos);
2683 * @param pos Which historical value to return; must be less than
2690 public final float getHistoricalSize(int pointerIndex, int pos) {
2691 return nativeGetAxisValue(mNativePtr, AXIS_SIZE, pointerIndex, pos);
2701 * @param pos Which historical value to return; must be less than
2708 public final float getHistoricalTouchMajor(int pointerIndex, int pos) {
2709 return nativeGetAxisValue(mNativePtr, AXIS_TOUCH_MAJOR, pointerIndex, pos);
2719 * @param pos Which historical value to return; must be less than
2726 public final float getHistoricalTouchMinor(int pointerIndex, int pos) {
2727 return nativeGetAxisValue(mNativePtr, AXIS_TOUCH_MINOR, pointerIndex, pos);
2737 * @param pos Which historical value to return; must be less than
2744 public final float getHistoricalToolMajor(int pointerIndex, int pos) {
2745 return nativeGetAxisValue(mNativePtr, AXIS_TOOL_MAJOR, pointerIndex, pos);
2755 * @param pos Which historical value to return; must be less than
2762 public final float getHistoricalToolMinor(int pointerIndex, int pos) {
2763 return nativeGetAxisValue(mNativePtr, AXIS_TOOL_MINOR, pointerIndex, pos);
2773 * @param pos Which historical value to return; must be less than
2780 public final float getHistoricalOrientation(int pointerIndex, int pos) {
2781 return nativeGetAxisValue(mNativePtr, AXIS_ORIENTATION, pointerIndex, pos);
2792 * @param pos Which historical value to return; must be less than
2799 public final float getHistoricalAxisValue(int axis, int pointerIndex, int pos) {
2800 return nativeGetAxisValue(mNativePtr, axis, pointerIndex, pos);
2811 * @param pos Which historical value to return; must be less than
2819 public final void getHistoricalPointerCoords(int pointerIndex, int pos,
2821 nativeGetPointerCoords(mNativePtr, pointerIndex, pos, outPointerCoords);