Lines Matching refs:nIndex

66 	const basegfx::B2DPolygon& getB2DPolygon(sal_uInt32 nIndex) const  in getB2DPolygon()
68 return maPolygons[nIndex]; in getB2DPolygon()
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
82 aIndex += nIndex; in insert()
87 void insert(sal_uInt32 nIndex, const basegfx::B2DPolyPolygon& rPolyPolygon) in insert() argument
96 aIndex += nIndex; in insert()
106 void remove(sal_uInt32 nIndex, sal_uInt32 nCount) in remove() argument
112 aStart += nIndex; in remove()
250 B2DPolygon B2DPolyPolygon::getB2DPolygon(sal_uInt32 nIndex) const in getB2DPolygon()
252 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B2DPolyPolygon access outside range (!)"); in getB2DPolygon()
254 return mpPolyPolygon->getB2DPolygon(nIndex); in getB2DPolygon()
257 void B2DPolyPolygon::setB2DPolygon(sal_uInt32 nIndex, const B2DPolygon& rPolygon) in setB2DPolygon() argument
259 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B2DPolyPolygon access outside range (!)"); in setB2DPolygon()
261 if(getB2DPolygon(nIndex) != rPolygon) in setB2DPolygon()
262 mpPolyPolygon->setB2DPolygon(nIndex, rPolygon); in setB2DPolygon()
280 void B2DPolyPolygon::insert(sal_uInt32 nIndex, const B2DPolygon& rPolygon, sal_uInt32 nCount) in insert() argument
282 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B2DPolyPolygon Insert outside range (!)"); in insert()
285 mpPolyPolygon->insert(nIndex, rPolygon, nCount); in insert()
318 void B2DPolyPolygon::insert(sal_uInt32 nIndex, const B2DPolyPolygon& rPolyPolygon) in insert() argument
320 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B2DPolyPolygon Insert outside range (!)"); in insert()
323 mpPolyPolygon->insert(nIndex, rPolyPolygon); in insert()
332 void B2DPolyPolygon::remove(sal_uInt32 nIndex, sal_uInt32 nCount) in remove() argument
334 OSL_ENSURE(nIndex + nCount <= mpPolyPolygon->count(), "B2DPolyPolygon Remove outside range (!)"); in remove()
337 mpPolyPolygon->remove(nIndex, nCount); in remove()