• Home
  • Raw
  • Download

Lines Matching refs:outPointer

6590         RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[0];  in syncTouch()  local
6591 outPointer.id = 0; in syncTouch()
6592 outPointer.x = mSingleTouchMotionAccumulator.getAbsoluteX(); in syncTouch()
6593 outPointer.y = mSingleTouchMotionAccumulator.getAbsoluteY(); in syncTouch()
6594 outPointer.pressure = mSingleTouchMotionAccumulator.getAbsolutePressure(); in syncTouch()
6595 outPointer.touchMajor = 0; in syncTouch()
6596 outPointer.touchMinor = 0; in syncTouch()
6597 outPointer.toolMajor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
6598 outPointer.toolMinor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
6599 outPointer.orientation = 0; in syncTouch()
6600 outPointer.distance = mSingleTouchMotionAccumulator.getAbsoluteDistance(); in syncTouch()
6601 outPointer.tiltX = mSingleTouchMotionAccumulator.getAbsoluteTiltX(); in syncTouch()
6602 outPointer.tiltY = mSingleTouchMotionAccumulator.getAbsoluteTiltY(); in syncTouch()
6603 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
6604 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6605 outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; in syncTouch()
6607 outPointer.isHovering = isHovering; in syncTouch()
6672 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[outCount]; in syncTouch() local
6673 outPointer.x = inSlot->getX(); in syncTouch()
6674 outPointer.y = inSlot->getY(); in syncTouch()
6675 outPointer.pressure = inSlot->getPressure(); in syncTouch()
6676 outPointer.touchMajor = inSlot->getTouchMajor(); in syncTouch()
6677 outPointer.touchMinor = inSlot->getTouchMinor(); in syncTouch()
6678 outPointer.toolMajor = inSlot->getToolMajor(); in syncTouch()
6679 outPointer.toolMinor = inSlot->getToolMinor(); in syncTouch()
6680 outPointer.orientation = inSlot->getOrientation(); in syncTouch()
6681 outPointer.distance = inSlot->getDistance(); in syncTouch()
6682 outPointer.tiltX = 0; in syncTouch()
6683 outPointer.tiltY = 0; in syncTouch()
6685 outPointer.toolType = inSlot->getToolType(); in syncTouch()
6686 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6687 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
6688 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6689 outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; in syncTouch()
6696 outPointer.isHovering = isHovering; in syncTouch()
6720 outPointer.id = id; in syncTouch()