Lines Matching refs:pointerIndex
550 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { in getPointerProperties() argument
551 return &mPointerProperties[pointerIndex]; in getPointerProperties()
554 inline int32_t getPointerId(size_t pointerIndex) const { in getPointerId() argument
555 return mPointerProperties[pointerIndex].id; in getPointerId()
558 inline int32_t getToolType(size_t pointerIndex) const { in getToolType() argument
559 return mPointerProperties[pointerIndex].toolType; in getToolType()
564 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
566 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
568 inline float getRawX(size_t pointerIndex) const { in getRawX() argument
569 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getRawX()
572 inline float getRawY(size_t pointerIndex) const { in getRawY() argument
573 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getRawY()
576 float getAxisValue(int32_t axis, size_t pointerIndex) const;
578 inline float getX(size_t pointerIndex) const { in getX() argument
579 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getX()
582 inline float getY(size_t pointerIndex) const { in getY() argument
583 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getY()
586 inline float getPressure(size_t pointerIndex) const { in getPressure() argument
587 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); in getPressure()
590 inline float getSize(size_t pointerIndex) const { in getSize() argument
591 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); in getSize()
594 inline float getTouchMajor(size_t pointerIndex) const { in getTouchMajor() argument
595 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); in getTouchMajor()
598 inline float getTouchMinor(size_t pointerIndex) const { in getTouchMinor() argument
599 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); in getTouchMinor()
602 inline float getToolMajor(size_t pointerIndex) const { in getToolMajor() argument
603 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); in getToolMajor()
606 inline float getToolMinor(size_t pointerIndex) const { in getToolMinor() argument
607 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); in getToolMinor()
610 inline float getOrientation(size_t pointerIndex) const { in getOrientation() argument
611 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); in getOrientation()
621 size_t pointerIndex, size_t historicalIndex) const;
623 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
626 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawX() argument
628 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalRawX()
631 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawY() argument
633 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalRawY()
636 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
638 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalX() argument
640 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalX()
643 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalY() argument
645 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalY()
648 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalPressure() argument
650 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); in getHistoricalPressure()
653 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalSize() argument
655 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); in getHistoricalSize()
658 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMajor() argument
660 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); in getHistoricalTouchMajor()
663 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMinor() argument
665 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); in getHistoricalTouchMinor()
668 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMajor() argument
670 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); in getHistoricalToolMajor()
673 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMinor() argument
675 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); in getHistoricalToolMinor()
678 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalOrientation() argument
680 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); in getHistoricalOrientation()