Lines Matching refs:outPointer

6016         RawPointerData::Pointer& outPointer = mCurrentRawPointerData.pointers[0];  in syncTouch()  local
6017 outPointer.id = 0; in syncTouch()
6018 outPointer.x = mSingleTouchMotionAccumulator.getAbsoluteX(); in syncTouch()
6019 outPointer.y = mSingleTouchMotionAccumulator.getAbsoluteY(); in syncTouch()
6020 outPointer.pressure = mSingleTouchMotionAccumulator.getAbsolutePressure(); in syncTouch()
6021 outPointer.touchMajor = 0; in syncTouch()
6022 outPointer.touchMinor = 0; in syncTouch()
6023 outPointer.toolMajor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
6024 outPointer.toolMinor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
6025 outPointer.orientation = 0; in syncTouch()
6026 outPointer.distance = mSingleTouchMotionAccumulator.getAbsoluteDistance(); in syncTouch()
6027 outPointer.tiltX = mSingleTouchMotionAccumulator.getAbsoluteTiltX(); in syncTouch()
6028 outPointer.tiltY = mSingleTouchMotionAccumulator.getAbsoluteTiltY(); in syncTouch()
6029 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
6030 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6031 outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; in syncTouch()
6033 outPointer.isHovering = isHovering; in syncTouch()
6098 RawPointerData::Pointer& outPointer = mCurrentRawPointerData.pointers[outCount]; in syncTouch() local
6099 outPointer.x = inSlot->getX(); in syncTouch()
6100 outPointer.y = inSlot->getY(); in syncTouch()
6101 outPointer.pressure = inSlot->getPressure(); in syncTouch()
6102 outPointer.touchMajor = inSlot->getTouchMajor(); in syncTouch()
6103 outPointer.touchMinor = inSlot->getTouchMinor(); in syncTouch()
6104 outPointer.toolMajor = inSlot->getToolMajor(); in syncTouch()
6105 outPointer.toolMinor = inSlot->getToolMinor(); in syncTouch()
6106 outPointer.orientation = inSlot->getOrientation(); in syncTouch()
6107 outPointer.distance = inSlot->getDistance(); in syncTouch()
6108 outPointer.tiltX = 0; in syncTouch()
6109 outPointer.tiltY = 0; in syncTouch()
6111 outPointer.toolType = inSlot->getToolType(); in syncTouch()
6112 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6113 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
6114 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6115 outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; in syncTouch()
6122 outPointer.isHovering = isHovering; in syncTouch()
6146 outPointer.id = id; in syncTouch()