Lines Matching refs:rPolyPolygon
87 void insert(sal_uInt32 nIndex, const basegfx::B2DPolyPolygon& rPolyPolygon) in insert() argument
89 const sal_uInt32 nCount = rPolyPolygon.count(); in insert()
100 aIndex = maPolygons.insert(aIndex, rPolyPolygon.getB2DPolygon(a)); in insert()
206 B2DPolyPolygon::B2DPolyPolygon(const B2DPolyPolygon& rPolyPolygon) : in B2DPolyPolygon() argument
207 mpPolyPolygon(rPolyPolygon.mpPolyPolygon) in B2DPolyPolygon()
220 B2DPolyPolygon& B2DPolyPolygon::operator=(const B2DPolyPolygon& rPolyPolygon) in operator =() argument
222 mpPolyPolygon = rPolyPolygon.mpPolyPolygon; in operator =()
232 bool B2DPolyPolygon::operator==(const B2DPolyPolygon& rPolyPolygon) const in operator ==()
234 if(mpPolyPolygon.same_object(rPolyPolygon.mpPolyPolygon)) in operator ==()
237 return ((*mpPolyPolygon) == (*rPolyPolygon.mpPolyPolygon)); in operator ==()
240 bool B2DPolyPolygon::operator!=(const B2DPolyPolygon& rPolyPolygon) const in operator !=()
242 return !((*this) == rPolyPolygon); in operator !=()
318 void B2DPolyPolygon::insert(sal_uInt32 nIndex, const B2DPolyPolygon& rPolyPolygon) in insert() argument
322 if(rPolyPolygon.count()) in insert()
323 mpPolyPolygon->insert(nIndex, rPolyPolygon); in insert()
326 void B2DPolyPolygon::append(const B2DPolyPolygon& rPolyPolygon) in append() argument
328 if(rPolyPolygon.count()) in append()
329 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolyPolygon); in append()