Lines Matching refs:pointerIndex
592 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { in getPointerProperties() argument
593 return &mPointerProperties[pointerIndex]; in getPointerProperties()
596 inline int32_t getPointerId(size_t pointerIndex) const { in getPointerId() argument
597 return mPointerProperties[pointerIndex].id; in getPointerId()
600 inline int32_t getToolType(size_t pointerIndex) const { in getToolType() argument
601 return mPointerProperties[pointerIndex].toolType; in getToolType()
610 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
617 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
619 inline float getRawX(size_t pointerIndex) const { in getRawX() argument
620 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getRawX()
623 inline float getRawY(size_t pointerIndex) const { in getRawY() argument
624 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getRawY()
627 float getAxisValue(int32_t axis, size_t pointerIndex) const;
633 inline float getX(size_t pointerIndex) const { in getX() argument
634 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getX()
641 inline float getY(size_t pointerIndex) const { in getY() argument
642 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getY()
645 inline float getPressure(size_t pointerIndex) const { in getPressure() argument
646 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); in getPressure()
649 inline float getSize(size_t pointerIndex) const { in getSize() argument
650 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); in getSize()
653 inline float getTouchMajor(size_t pointerIndex) const { in getTouchMajor() argument
654 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); in getTouchMajor()
657 inline float getTouchMinor(size_t pointerIndex) const { in getTouchMinor() argument
658 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); in getTouchMinor()
661 inline float getToolMajor(size_t pointerIndex) const { in getToolMajor() argument
662 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); in getToolMajor()
665 inline float getToolMinor(size_t pointerIndex) const { in getToolMinor() argument
666 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); in getToolMinor()
669 inline float getOrientation(size_t pointerIndex) const { in getOrientation() argument
670 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); in getOrientation()
684 size_t pointerIndex, size_t historicalIndex) const;
691 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
694 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawX() argument
696 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalRawX()
699 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawY() argument
701 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalRawY()
704 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
706 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalX() argument
708 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalX()
711 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalY() argument
713 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalY()
716 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalPressure() argument
718 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); in getHistoricalPressure()
721 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalSize() argument
723 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); in getHistoricalSize()
726 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMajor() argument
728 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); in getHistoricalTouchMajor()
731 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMinor() argument
733 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); in getHistoricalTouchMinor()
736 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMajor() argument
738 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); in getHistoricalToolMajor()
741 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMinor() argument
743 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); in getHistoricalToolMinor()
746 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalOrientation() argument
748 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); in getHistoricalOrientation()