Lines Matching refs:rPoly

80 void OutputDevice::ImplDrawPolygon( const Polygon& rPoly, const PolyPolygon* pClipPolyPoly )  in DBG_NAMEEX()
83 ImplDrawPolyPolygon( rPoly, pClipPolyPoly ); in DBG_NAMEEX()
86 sal_uInt16 nPoints = rPoly.GetSize(); in DBG_NAMEEX()
91 const SalPoint* pPtAry = (const SalPoint*)rPoly.GetConstPointAry(); in DBG_NAMEEX()
112 const Polygon rPoly = pPolyPoly->GetObject( 0 ); in ImplDrawPolyPolygon() local
113 sal_uInt16 nSize = rPoly.GetSize(); in ImplDrawPolyPolygon()
117 const SalPoint* pPtAry = (const SalPoint*)rPoly.GetConstPointAry(); in ImplDrawPolyPolygon()
129 const Polygon& rPoly = pPolyPoly->GetObject( i ); in ImplDrawPolyPolygon() local
130 sal_uInt16 nSize = rPoly.GetSize(); in ImplDrawPolyPolygon()
134 pPointAryAry[i] = (PCONSTSALPOINT)rPoly.GetConstPointAry(); in ImplDrawPolyPolygon()
616 const Polygon& rPoly = pPolyPoly->GetObject( 1 ); in ImplDrawComplexGradient() local
618 if( !rPoly.GetBoundRect().IsEmpty() ) in ImplDrawComplexGradient()
633 mpMetaFile->AddAction( new MetaPolygonAction( rPoly ) ); in ImplDrawComplexGradient()
638 ImplDrawPolygon( rPoly, pClipPolyPoly ); in ImplDrawComplexGradient()
1342 const Polygon& rPoly = rPolyPoly[ (sal_uInt16) nPoly ]; in ImplDrawHatchLine() local
1344 if( rPoly.GetSize() > 1 ) in ImplDrawHatchLine()
1346 Line aCurSegment( rPoly[ 0 ], Point() ); in ImplDrawHatchLine()
1348 for( long i = 1, nCount = rPoly.GetSize(); i <= nCount; i++ ) in ImplDrawHatchLine()
1350 aCurSegment.SetEnd( rPoly[ (sal_uInt16)( i % nCount ) ] ); in ImplDrawHatchLine()
1358 …const Line aPrevSegment( rPoly[ (sal_uInt16)( ( i > 1 ) ? ( i - 2 ) : ( nCount - 1 ) ) ], aCurSeg… in ImplDrawHatchLine()
1371 const Line aNextSegment( aCurSegment.GetEnd(), rPoly[ (sal_uInt16)( ( i + 1 ) % nCount ) ] ); in ImplDrawHatchLine()