Lines Matching refs:pointerIndex
357 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { in getPointerProperties() argument
358 return &mPointerProperties[pointerIndex]; in getPointerProperties()
361 inline int32_t getPointerId(size_t pointerIndex) const { in getPointerId() argument
362 return mPointerProperties[pointerIndex].id; in getPointerId()
365 inline int32_t getToolType(size_t pointerIndex) const { in getToolType() argument
366 return mPointerProperties[pointerIndex].toolType; in getToolType()
371 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
373 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
375 inline float getRawX(size_t pointerIndex) const { in getRawX() argument
376 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getRawX()
379 inline float getRawY(size_t pointerIndex) const { in getRawY() argument
380 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getRawY()
383 float getAxisValue(int32_t axis, size_t pointerIndex) const;
385 inline float getX(size_t pointerIndex) const { in getX() argument
386 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); in getX()
389 inline float getY(size_t pointerIndex) const { in getY() argument
390 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); in getY()
393 inline float getPressure(size_t pointerIndex) const { in getPressure() argument
394 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); in getPressure()
397 inline float getSize(size_t pointerIndex) const { in getSize() argument
398 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); in getSize()
401 inline float getTouchMajor(size_t pointerIndex) const { in getTouchMajor() argument
402 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); in getTouchMajor()
405 inline float getTouchMinor(size_t pointerIndex) const { in getTouchMinor() argument
406 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); in getTouchMinor()
409 inline float getToolMajor(size_t pointerIndex) const { in getToolMajor() argument
410 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); in getToolMajor()
413 inline float getToolMinor(size_t pointerIndex) const { in getToolMinor() argument
414 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); in getToolMinor()
417 inline float getOrientation(size_t pointerIndex) const { in getOrientation() argument
418 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); in getOrientation()
428 size_t pointerIndex, size_t historicalIndex) const;
430 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
433 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawX() argument
435 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalRawX()
438 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalRawY() argument
440 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalRawY()
443 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
445 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalX() argument
447 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); in getHistoricalX()
450 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalY() argument
452 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); in getHistoricalY()
455 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalPressure() argument
457 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); in getHistoricalPressure()
460 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalSize() argument
462 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); in getHistoricalSize()
465 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMajor() argument
467 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); in getHistoricalTouchMajor()
470 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalTouchMinor() argument
472 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); in getHistoricalTouchMinor()
475 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMajor() argument
477 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); in getHistoricalToolMajor()
480 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalToolMinor() argument
482 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); in getHistoricalToolMinor()
485 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { in getHistoricalOrientation() argument
487 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); in getHistoricalOrientation()