Lines Matching refs:pointerIndex
421 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { in getPointerProperties() argument
422 return &mPointerProperties[pointerIndex]; in getPointerProperties()
425 inline int32_t getPointerId(size_t pointerIndex) const { in getPointerId() argument
426 return mPointerProperties[pointerIndex].id; in getPointerId()
429 inline int32_t getToolType(size_t pointerIndex) const { in getToolType() argument
430 return mPointerProperties[pointerIndex].toolType; in getToolType()
435 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
437 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
439 inline float getRawX(size_t pointerIndex) const { in getRawX() argument
440 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getRawX()
443 inline float getRawY(size_t pointerIndex) const { in getRawY() argument
444 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getRawY()
447 float getAxisValue(int32_t axis, size_t pointerIndex) const;
449 inline float getX(size_t pointerIndex) const { in getX() argument
450 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getX()
453 inline float getY(size_t pointerIndex) const { in getY() argument
454 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getY()
457 inline float getPressure(size_t pointerIndex) const { in getPressure() argument
458 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); in getPressure()
461 inline float getSize(size_t pointerIndex) const { in getSize() argument
462 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); in getSize()
465 inline float getTouchMajor(size_t pointerIndex) const { in getTouchMajor() argument
466 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); in getTouchMajor()
469 inline float getTouchMinor(size_t pointerIndex) const { in getTouchMinor() argument
470 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); in getTouchMinor()
473 inline float getToolMajor(size_t pointerIndex) const { in getToolMajor() argument
474 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); in getToolMajor()
477 inline float getToolMinor(size_t pointerIndex) const { in getToolMinor() argument
478 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); in getToolMinor()
481 inline float getOrientation(size_t pointerIndex) const { in getOrientation() argument
482 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); in getOrientation()
492 size_t pointerIndex, size_t historicalIndex) const;
494 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
497 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawX() argument
499 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalRawX()
502 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawY() argument
504 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalRawY()
507 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
509 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalX() argument
511 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalX()
514 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalY() argument
516 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalY()
519 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalPressure() argument
521 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); in getHistoricalPressure()
524 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalSize() argument
526 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); in getHistoricalSize()
529 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMajor() argument
531 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); in getHistoricalTouchMajor()
534 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMinor() argument
536 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); in getHistoricalTouchMinor()
539 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMajor() argument
541 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); in getHistoricalToolMajor()
544 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMinor() argument
546 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); in getHistoricalToolMinor()
549 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalOrientation() argument
551 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); in getHistoricalOrientation()