Lines Matching refs:mpPolyPolygon

202         mpPolyPolygon(DefaultPolyPolygon::get())  in B2DPolyPolygon()
207 mpPolyPolygon(rPolyPolygon.mpPolyPolygon) in B2DPolyPolygon()
212 mpPolyPolygon( ImplB2DPolyPolygon(rPolygon) ) in B2DPolyPolygon()
222 mpPolyPolygon = rPolyPolygon.mpPolyPolygon; in operator =()
228 mpPolyPolygon.make_unique(); in makeUnique()
229 mpPolyPolygon->makeUnique(); in makeUnique()
234 if(mpPolyPolygon.same_object(rPolyPolygon.mpPolyPolygon)) in operator ==()
237 return ((*mpPolyPolygon) == (*rPolyPolygon.mpPolyPolygon)); in operator ==()
247 return mpPolyPolygon->count(); in count()
252 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B2DPolyPolygon access outside range (!)"); in getB2DPolygon()
254 return mpPolyPolygon->getB2DPolygon(nIndex); in getB2DPolygon()
259 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B2DPolyPolygon access outside range (!)"); in setB2DPolygon()
262 mpPolyPolygon->setB2DPolygon(nIndex, rPolygon); in setB2DPolygon()
267 for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) in areControlPointsUsed()
269 const B2DPolygon& rPolygon = mpPolyPolygon->getB2DPolygon(a); in areControlPointsUsed()
282 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B2DPolyPolygon Insert outside range (!)"); in insert()
285 mpPolyPolygon->insert(nIndex, rPolygon, nCount); in insert()
291 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolygon, nCount); in append()
298 for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) in getDefaultAdaptiveSubdivision()
300 aRetval.append(mpPolyPolygon->getB2DPolygon(a).getDefaultAdaptiveSubdivision()); in getDefaultAdaptiveSubdivision()
310 for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) in getB2DRange()
312 aRetval.expand(mpPolyPolygon->getB2DPolygon(a).getB2DRange()); in getB2DRange()
320 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B2DPolyPolygon Insert outside range (!)"); in insert()
323 mpPolyPolygon->insert(nIndex, rPolyPolygon); in insert()
329 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolyPolygon); in append()
334 OSL_ENSURE(nIndex + nCount <= mpPolyPolygon->count(), "B2DPolyPolygon Remove outside range (!)"); in remove()
337 mpPolyPolygon->remove(nIndex, nCount); in remove()
342 mpPolyPolygon = DefaultPolyPolygon::get(); in clear()
351 for(sal_uInt32 a(0L); bRetval && a < mpPolyPolygon->count(); a++) in isClosed()
353 if(!(mpPolyPolygon->getB2DPolygon(a)).isClosed()) in isClosed()
365 mpPolyPolygon->setClosed(bNew); in setClosed()
370 if(mpPolyPolygon->count()) in flip()
372 mpPolyPolygon->flip(); in flip()
380 for(sal_uInt32 a(0L); !bRetval && a < mpPolyPolygon->count(); a++) in hasDoublePoints()
382 if((mpPolyPolygon->getB2DPolygon(a)).hasDoublePoints()) in hasDoublePoints()
394 mpPolyPolygon->removeDoublePoints(); in removeDoublePoints()
399 if(mpPolyPolygon->count() && !rMatrix.isIdentity()) in transform()
401 mpPolyPolygon->transform(rMatrix); in transform()
407 return mpPolyPolygon->begin(); in begin()
412 return mpPolyPolygon->end(); in end()
417 return mpPolyPolygon->begin(); in begin()
422 return mpPolyPolygon->end(); in end()