• Home
  • Raw
  • Download

Lines Matching refs:pointerIndex

755     inline const PointerProperties* getPointerProperties(size_t pointerIndex) const {  in getPointerProperties()  argument
756 return &mPointerProperties[pointerIndex]; in getPointerProperties()
759 inline int32_t getPointerId(size_t pointerIndex) const { in getPointerId() argument
760 return mPointerProperties[pointerIndex].id; in getPointerId()
763 inline ToolType getToolType(size_t pointerIndex) const { in getToolType() argument
764 return mPointerProperties[pointerIndex].toolType; in getToolType()
773 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
780 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
782 inline float getRawX(size_t pointerIndex) const { in getRawX() argument
783 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getRawX()
786 inline float getRawY(size_t pointerIndex) const { in getRawY() argument
787 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getRawY()
790 float getAxisValue(int32_t axis, size_t pointerIndex) const;
796 inline float getX(size_t pointerIndex) const { in getX() argument
797 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getX()
804 inline float getY(size_t pointerIndex) const { in getY() argument
805 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getY()
808 inline float getPressure(size_t pointerIndex) const { in getPressure() argument
809 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); in getPressure()
812 inline float getSize(size_t pointerIndex) const { in getSize() argument
813 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); in getSize()
816 inline float getTouchMajor(size_t pointerIndex) const { in getTouchMajor() argument
817 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); in getTouchMajor()
820 inline float getTouchMinor(size_t pointerIndex) const { in getTouchMinor() argument
821 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); in getTouchMinor()
824 inline float getToolMajor(size_t pointerIndex) const { in getToolMajor() argument
825 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); in getToolMajor()
828 inline float getToolMinor(size_t pointerIndex) const { in getToolMinor() argument
829 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); in getToolMinor()
832 inline float getOrientation(size_t pointerIndex) const { in getOrientation() argument
833 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); in getOrientation()
847 size_t pointerIndex, size_t historicalIndex) const;
854 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
857 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawX() argument
859 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalRawX()
862 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawY() argument
864 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalRawY()
867 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
869 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalX() argument
871 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalX()
874 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalY() argument
876 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalY()
879 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalPressure() argument
881 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); in getHistoricalPressure()
884 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalSize() argument
886 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); in getHistoricalSize()
889 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMajor() argument
891 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); in getHistoricalTouchMajor()
894 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMinor() argument
896 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); in getHistoricalTouchMinor()
899 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMajor() argument
901 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); in getHistoricalToolMajor()
904 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMinor() argument
906 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); in getHistoricalToolMinor()
909 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalOrientation() argument
911 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); in getHistoricalOrientation()
914 inline bool isResampled(size_t pointerIndex, size_t historicalIndex) const { in isResampled() argument
915 return getHistoricalRawPointerCoords(pointerIndex, historicalIndex)->isResampled; in isResampled()