Lines Matching refs:rPolyPoly

53     bool ImplIsPolygonRectilinear (const PolyPolygon& rPolyPoly)  in ImplIsPolygonRectilinear()  argument
56 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplIsPolygonRectilinear()
59 const Polygon& aPoly = rPolyPoly.GetObject(nPoly); in ImplIsPolygonRectilinear()
98 RegionBand* ImplRectilinearPolygonToBands(const PolyPolygon& rPolyPoly) in ImplRectilinearPolygonToBands() argument
100 OSL_ASSERT(ImplIsPolygonRectilinear (rPolyPoly)); in ImplRectilinearPolygonToBands()
107 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplRectilinearPolygonToBands()
110 const Polygon& aPoly = rPolyPoly.GetObject(nPoly); in ImplRectilinearPolygonToBands()
196 …RegionBand* ImplGeneralPolygonToBands(const PolyPolygon& rPolyPoly, const Rectangle& rPolygonBound… in ImplGeneralPolygonToBands() argument
205 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplGeneralPolygonToBands()
210 const Polygon& aPoly = rPolyPoly.GetObject( nPoly ); in ImplGeneralPolygonToBands()
357 Region::Region(const PolyPolygon& rPolyPoly) in Region() argument
363 DBG_CHKOBJ( &rPolyPoly, PolyPolygon, NULL ); in Region()
365 if(rPolyPoly.Count()) in Region()
367 ImplCreatePolyPolyRegion(rPolyPoly); in Region()
371 Region::Region(const basegfx::B2DPolyPolygon& rPolyPoly) in Region() argument
377 DBG_CHKOBJ( &rPolyPoly, PolyPolygon, NULL ); in Region()
379 if(rPolyPoly.count()) in Region()
381 ImplCreatePolyPolyRegion(rPolyPoly); in Region()
397 void Region::ImplCreatePolyPolyRegion( const PolyPolygon& rPolyPoly ) in ImplCreatePolyPolyRegion() argument
399 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplCreatePolyPolyRegion()
404 const Rectangle aRect(rPolyPoly.GetBoundRect()); in ImplCreatePolyPolyRegion()
409 if((1 == aRect.GetWidth()) || (1 == aRect.GetHeight()) || rPolyPoly.IsRect()) in ImplCreatePolyPolyRegion()
415 mpPolyPolygon.reset(new PolyPolygon(rPolyPoly)); in ImplCreatePolyPolyRegion()
423 void Region::ImplCreatePolyPolyRegion( const basegfx::B2DPolyPolygon& rPolyPoly ) in ImplCreatePolyPolyRegion() argument
425 if(rPolyPoly.count() && !rPolyPoly.getB2DRange().isEmpty()) in ImplCreatePolyPolyRegion()
427 mpB2DPolyPolygon.reset(new basegfx::B2DPolyPolygon(rPolyPoly)); in ImplCreatePolyPolyRegion()
1771 Region Region::GetRegionFromPolyPolygon( const PolyPolygon& rPolyPoly ) in GetRegionFromPolyPolygon() argument
1779 int nPolygons = rPolyPoly.Count(); in GetRegionFromPolyPolygon()
1783 const Polygon& rPoly = rPolyPoly[i]; in GetRegionFromPolyPolygon()
1797 return Region( rPolyPoly ); in GetRegionFromPolyPolygon()
1805 const Polygon& rPoly = rPolyPoly[i]; in GetRegionFromPolyPolygon()