Lines Matching refs:rPolygon
71 void setB2DPolygon(sal_uInt32 nIndex, const basegfx::B2DPolygon& rPolygon) in setB2DPolygon() argument
73 maPolygons[nIndex] = rPolygon; in setB2DPolygon()
76 void insert(sal_uInt32 nIndex, const basegfx::B2DPolygon& rPolygon, sal_uInt32 nCount) in insert() argument
83 maPolygons.insert(aIndex, nCount, rPolygon); in insert()
211 B2DPolyPolygon::B2DPolyPolygon(const B2DPolygon& rPolygon) : in B2DPolyPolygon() argument
212 mpPolyPolygon( ImplB2DPolyPolygon(rPolygon) ) in B2DPolyPolygon()
257 void B2DPolyPolygon::setB2DPolygon(sal_uInt32 nIndex, const B2DPolygon& rPolygon) in setB2DPolygon() argument
261 if(getB2DPolygon(nIndex) != rPolygon) in setB2DPolygon()
262 mpPolyPolygon->setB2DPolygon(nIndex, rPolygon); in setB2DPolygon()
269 const B2DPolygon& rPolygon = mpPolyPolygon->getB2DPolygon(a); in areControlPointsUsed() local
271 if(rPolygon.areControlPointsUsed()) in areControlPointsUsed()
280 void B2DPolyPolygon::insert(sal_uInt32 nIndex, const B2DPolygon& rPolygon, sal_uInt32 nCount) in insert() argument
285 mpPolyPolygon->insert(nIndex, rPolygon, nCount); in insert()
288 void B2DPolyPolygon::append(const B2DPolygon& rPolygon, sal_uInt32 nCount) in append() argument
291 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolygon, nCount); in append()