Lines Matching refs:rPolyPoly

51     bool ImplIsPolygonRectilinear (const PolyPolygon& rPolyPoly)  in ImplIsPolygonRectilinear()  argument
54 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplIsPolygonRectilinear()
57 const Polygon& aPoly = rPolyPoly.GetObject(nPoly); in ImplIsPolygonRectilinear()
96 RegionBand* ImplRectilinearPolygonToBands(const PolyPolygon& rPolyPoly) in ImplRectilinearPolygonToBands() argument
98 OSL_ASSERT(ImplIsPolygonRectilinear (rPolyPoly)); in ImplRectilinearPolygonToBands()
105 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplRectilinearPolygonToBands()
108 const Polygon& aPoly = rPolyPoly.GetObject(nPoly); in ImplRectilinearPolygonToBands()
194 …RegionBand* ImplGeneralPolygonToBands(const PolyPolygon& rPolyPoly, const Rectangle& rPolygonBound… in ImplGeneralPolygonToBands() argument
203 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplGeneralPolygonToBands()
208 const Polygon& aPoly = rPolyPoly.GetObject( nPoly ); in ImplGeneralPolygonToBands()
355 Region::Region(const PolyPolygon& rPolyPoly) in Region() argument
361 DBG_CHKOBJ( &rPolyPoly, PolyPolygon, NULL ); in Region()
363 if(rPolyPoly.Count()) in Region()
365 ImplCreatePolyPolyRegion(rPolyPoly); in Region()
369 Region::Region(const basegfx::B2DPolyPolygon& rPolyPoly) in Region() argument
375 DBG_CHKOBJ( &rPolyPoly, PolyPolygon, NULL ); in Region()
377 if(rPolyPoly.count()) in Region()
379 ImplCreatePolyPolyRegion(rPolyPoly); in Region()
395 void Region::ImplCreatePolyPolyRegion( const PolyPolygon& rPolyPoly ) in ImplCreatePolyPolyRegion() argument
397 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplCreatePolyPolyRegion()
402 const Rectangle aRect(rPolyPoly.GetBoundRect()); in ImplCreatePolyPolyRegion()
407 if((1 == aRect.GetWidth()) || (1 == aRect.GetHeight()) || rPolyPoly.IsRect()) in ImplCreatePolyPolyRegion()
413 mpPolyPolygon.reset(new PolyPolygon(rPolyPoly)); in ImplCreatePolyPolyRegion()
421 void Region::ImplCreatePolyPolyRegion( const basegfx::B2DPolyPolygon& rPolyPoly ) in ImplCreatePolyPolyRegion() argument
423 if(rPolyPoly.count() && !rPolyPoly.getB2DRange().isEmpty()) in ImplCreatePolyPolyRegion()
425 mpB2DPolyPolygon.reset(new basegfx::B2DPolyPolygon(rPolyPoly)); in ImplCreatePolyPolyRegion()
1769 Region Region::GetRegionFromPolyPolygon( const PolyPolygon& rPolyPoly ) in GetRegionFromPolyPolygon() argument
1777 int nPolygons = rPolyPoly.Count(); in GetRegionFromPolyPolygon()
1781 const Polygon& rPoly = rPolyPoly[i]; in GetRegionFromPolyPolygon()
1795 return Region( rPolyPoly ); in GetRegionFromPolyPolygon()
1803 const Polygon& rPoly = rPolyPoly[i]; in GetRegionFromPolyPolygon()