Lines Matching refs:rPoly

216 Polygon ImplSubdivideBezier( const Polygon& rPoly )  in ImplSubdivideBezier()  argument
221 rPoly.AdaptiveSubdivide( aPoly ); in ImplSubdivideBezier()
269 const Polygon& rPoly = rPolyPoly.GetObject( i ); in ImplDrawPolyPolygon() local
270 sal_uInt16 nSize = rPoly.GetSize(); in ImplDrawPolyPolygon()
274 pPointAryAry[j] = (PCONSTSALPOINT)rPoly.GetConstPointAry(); in ImplDrawPolyPolygon()
275 pFlagAryAry[j] = rPoly.GetConstFlagAry(); in ImplDrawPolyPolygon()
1782 void OutputDevice::DrawPolyLine( const Polygon& rPoly ) in DrawPolyLine() argument
1786 DBG_CHKOBJ( &rPoly, Polygon, NULL ); in DrawPolyLine()
1789 mpMetaFile->AddAction( new MetaPolyLineAction( rPoly ) ); in DrawPolyLine()
1791 sal_uInt16 nPoints = rPoly.GetSize(); in DrawPolyLine()
1815 if(bTryAA && ImpTryDrawPolyLineDirect(rPoly.getB2DPolygon())) in DrawPolyLine()
1817 basegfx::B2DPolygon aB2DPolyLine(rPoly.getB2DPolygon()); in DrawPolyLine()
1835 Polygon aPoly = ImplLogicToDevicePixel( rPoly ); in DrawPolyLine()
1855 mpAlphaVDev->DrawPolyLine( rPoly ); in DrawPolyLine()
1860 void OutputDevice::DrawPolyLine( const Polygon& rPoly, const LineInfo& rLineInfo ) in DrawPolyLine() argument
1864 DBG_CHKOBJ( &rPoly, Polygon, NULL ); in DrawPolyLine()
1868 DrawPolyLine( rPoly ); in DrawPolyLine()
1877 …DrawPolyLine( rPoly.getB2DPolygon(), (double)rLineInfo.GetWidth(), rLineInfo.GetLineJoin(), rLineI… in DrawPolyLine()
1882 mpMetaFile->AddAction( new MetaPolyLineAction( rPoly, rLineInfo ) ); in DrawPolyLine()
1884 ImpDrawPolyLineWithLineInfo(rPoly, rLineInfo); in DrawPolyLine()
1887 void OutputDevice::ImpDrawPolyLineWithLineInfo(const Polygon& rPoly, const LineInfo& rLineInfo) in ImpDrawPolyLineWithLineInfo() argument
1889 sal_uInt16 nPoints(rPoly.GetSize()); in ImpDrawPolyLineWithLineInfo()
1894 Polygon aPoly = ImplLogicToDevicePixel( rPoly ); in ImpDrawPolyLineWithLineInfo()
1947 mpAlphaVDev->DrawPolyLine( rPoly, rLineInfo ); in ImpDrawPolyLineWithLineInfo()
1952 void OutputDevice::DrawPolygon( const Polygon& rPoly ) in DrawPolygon() argument
1956 DBG_CHKOBJ( &rPoly, Polygon, NULL ); in DrawPolygon()
1959 mpMetaFile->AddAction( new MetaPolygonAction( rPoly ) ); in DrawPolygon()
1961 sal_uInt16 nPoints = rPoly.GetSize(); in DrawPolygon()
1988 basegfx::B2DPolygon aB2DPolygon(rPoly.getB2DPolygon()); in DrawPolygon()
2024 Polygon aPoly = ImplLogicToDevicePixel( rPoly ); in DrawPolygon()
2043 mpAlphaVDev->DrawPolygon( rPoly ); in DrawPolygon()