Lines Matching refs:rModel
59 BinaryInputStream& operator>>( BinaryInputStream& rStrm, CellAnchorModel& rModel ) in operator >>() argument
62 rModel.mnCol = rStrm.readuInt16(); in operator >>()
63 rModel.mnColOffset = rStrm.readuInt16(); in operator >>()
64 rModel.mnRow = rStrm.readuInt16(); in operator >>()
65 rModel.mnRowOffset = rStrm.readuInt16(); in operator >>()
280 EmuPoint ShapeAnchor::calcCellAnchorEmu( const CellAnchorModel& rModel ) const in calcCellAnchorEmu()
283 Point aPoint = getCellPosition( rModel.mnCol, rModel.mnRow ); in calcCellAnchorEmu()
290 aEmuPoint.X += rModel.mnColOffset; in calcCellAnchorEmu()
291 aEmuPoint.Y += rModel.mnRowOffset; in calcCellAnchorEmu()
297 …= static_cast< sal_Int64 >( rUnitConv.scaleValue( static_cast< double >( rModel.mnColOffset ), UNI… in calcCellAnchorEmu()
298 …= static_cast< sal_Int64 >( rUnitConv.scaleValue( static_cast< double >( rModel.mnRowOffset ), UNI… in calcCellAnchorEmu()
304 Size aCellSize = getCellSize( rModel.mnCol, rModel.mnRow ); in calcCellAnchorEmu()
307 …64 >( aEmuSize.Width * getLimitedValue< double >( static_cast< double >( rModel.mnColOffset ) / 10… in calcCellAnchorEmu()
309 …4 >( aEmuSize.Height * getLimitedValue< double >( static_cast< double >( rModel.mnRowOffset ) / 25… in calcCellAnchorEmu()