Lines Matching refs:rLogicRect

655 Rectangle OutputDevice::ImplLogicToDevicePixel( const Rectangle& rLogicRect ) const  in ImplLogicToDevicePixel()
657 if ( rLogicRect.IsEmpty() ) in ImplLogicToDevicePixel()
658 return rLogicRect; in ImplLogicToDevicePixel()
662 return Rectangle( rLogicRect.Left()+mnOutOffX, rLogicRect.Top()+mnOutOffY, in ImplLogicToDevicePixel()
663 rLogicRect.Right()+mnOutOffX, rLogicRect.Bottom()+mnOutOffY ); in ImplLogicToDevicePixel()
666 return Rectangle( ImplLogicToPixel( rLogicRect.Left()+maMapRes.mnMapOfsX, mnDPIX, in ImplLogicToDevicePixel()
669 ImplLogicToPixel( rLogicRect.Top()+maMapRes.mnMapOfsY, mnDPIY, in ImplLogicToDevicePixel()
672 ImplLogicToPixel( rLogicRect.Right()+maMapRes.mnMapOfsX, mnDPIX, in ImplLogicToDevicePixel()
675 ImplLogicToPixel( rLogicRect.Bottom()+maMapRes.mnMapOfsY, mnDPIY, in ImplLogicToDevicePixel()
1175 Rectangle OutputDevice::LogicToPixel( const Rectangle& rLogicRect ) const in LogicToPixel()
1179 if ( !mbMap || rLogicRect.IsEmpty() ) in LogicToPixel()
1180 return rLogicRect; in LogicToPixel()
1182 return Rectangle( ImplLogicToPixel( rLogicRect.Left() + maMapRes.mnMapOfsX, mnDPIX, in LogicToPixel()
1185 ImplLogicToPixel( rLogicRect.Top() + maMapRes.mnMapOfsY, mnDPIY, in LogicToPixel()
1188 ImplLogicToPixel( rLogicRect.Right() + maMapRes.mnMapOfsX, mnDPIX, in LogicToPixel()
1191 ImplLogicToPixel( rLogicRect.Bottom() + maMapRes.mnMapOfsY, mnDPIY, in LogicToPixel()
1371 Rectangle OutputDevice::LogicToPixel( const Rectangle& rLogicRect, in LogicToPixel() argument
1376 if ( rMapMode.IsDefault() || rLogicRect.IsEmpty() ) in LogicToPixel()
1377 return rLogicRect; in LogicToPixel()
1384 return Rectangle( ImplLogicToPixel( rLogicRect.Left() + aMapRes.mnMapOfsX, mnDPIX, in LogicToPixel()
1387 ImplLogicToPixel( rLogicRect.Top() + aMapRes.mnMapOfsY, mnDPIY, in LogicToPixel()
1390 ImplLogicToPixel( rLogicRect.Right() + aMapRes.mnMapOfsX, mnDPIX, in LogicToPixel()
1393 ImplLogicToPixel( rLogicRect.Bottom() + aMapRes.mnMapOfsY, mnDPIY, in LogicToPixel()