Lines Matching refs:outPointer
6886 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[0]; in syncTouch() local
6887 outPointer.id = 0; in syncTouch()
6888 outPointer.x = mSingleTouchMotionAccumulator.getAbsoluteX(); in syncTouch()
6889 outPointer.y = mSingleTouchMotionAccumulator.getAbsoluteY(); in syncTouch()
6890 outPointer.pressure = mSingleTouchMotionAccumulator.getAbsolutePressure(); in syncTouch()
6891 outPointer.touchMajor = 0; in syncTouch()
6892 outPointer.touchMinor = 0; in syncTouch()
6893 outPointer.toolMajor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
6894 outPointer.toolMinor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
6895 outPointer.orientation = 0; in syncTouch()
6896 outPointer.distance = mSingleTouchMotionAccumulator.getAbsoluteDistance(); in syncTouch()
6897 outPointer.tiltX = mSingleTouchMotionAccumulator.getAbsoluteTiltX(); in syncTouch()
6898 outPointer.tiltY = mSingleTouchMotionAccumulator.getAbsoluteTiltY(); in syncTouch()
6899 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
6900 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6901 outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; in syncTouch()
6903 outPointer.isHovering = isHovering; in syncTouch()
6969 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[outCount]; in syncTouch() local
6970 outPointer.x = inSlot->getX(); in syncTouch()
6971 outPointer.y = inSlot->getY(); in syncTouch()
6972 outPointer.pressure = inSlot->getPressure(); in syncTouch()
6973 outPointer.touchMajor = inSlot->getTouchMajor(); in syncTouch()
6974 outPointer.touchMinor = inSlot->getTouchMinor(); in syncTouch()
6975 outPointer.toolMajor = inSlot->getToolMajor(); in syncTouch()
6976 outPointer.toolMinor = inSlot->getToolMinor(); in syncTouch()
6977 outPointer.orientation = inSlot->getOrientation(); in syncTouch()
6978 outPointer.distance = inSlot->getDistance(); in syncTouch()
6979 outPointer.tiltX = 0; in syncTouch()
6980 outPointer.tiltY = 0; in syncTouch()
6982 outPointer.toolType = inSlot->getToolType(); in syncTouch()
6983 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6984 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
6985 if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { in syncTouch()
6986 outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; in syncTouch()
6993 outPointer.isHovering = isHovering; in syncTouch()
7017 outPointer.id = id; in syncTouch()