Lines Matching refs:nIndex

67 	const ::basegfx::B3DPolygon& getB3DPolygon(sal_uInt32 nIndex) const  in getB3DPolygon()
69 return maPolygons[nIndex]; in getB3DPolygon()
72 void setB3DPolygon(sal_uInt32 nIndex, const ::basegfx::B3DPolygon& rPolygon) in setB3DPolygon() argument
74 maPolygons[nIndex] = rPolygon; in setB3DPolygon()
77 void insert(sal_uInt32 nIndex, const ::basegfx::B3DPolygon& rPolygon, sal_uInt32 nCount) in insert() argument
83 aIndex += nIndex; in insert()
88 void insert(sal_uInt32 nIndex, const ::basegfx::B3DPolyPolygon& rPolyPolygon) in insert() argument
97 aIndex += nIndex; in insert()
107 void remove(sal_uInt32 nIndex, sal_uInt32 nCount) in remove() argument
113 aStart += nIndex; in remove()
259 B3DPolygon B3DPolyPolygon::getB3DPolygon(sal_uInt32 nIndex) const in getB3DPolygon()
261 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B3DPolyPolygon access outside range (!)"); in getB3DPolygon()
263 return mpPolyPolygon->getB3DPolygon(nIndex); in getB3DPolygon()
266 void B3DPolyPolygon::setB3DPolygon(sal_uInt32 nIndex, const B3DPolygon& rPolygon) in setB3DPolygon() argument
268 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B3DPolyPolygon access outside range (!)"); in setB3DPolygon()
270 if(getB3DPolygon(nIndex) != rPolygon) in setB3DPolygon()
271 mpPolyPolygon->setB3DPolygon(nIndex, rPolygon); in setB3DPolygon()
343 void B3DPolyPolygon::insert(sal_uInt32 nIndex, const B3DPolygon& rPolygon, sal_uInt32 nCount) in insert() argument
345 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B3DPolyPolygon Insert outside range (!)"); in insert()
348 mpPolyPolygon->insert(nIndex, rPolygon, nCount); in insert()
357 void B3DPolyPolygon::insert(sal_uInt32 nIndex, const B3DPolyPolygon& rPolyPolygon) in insert() argument
359 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B3DPolyPolygon Insert outside range (!)"); in insert()
362 mpPolyPolygon->insert(nIndex, rPolyPolygon); in insert()
371 void B3DPolyPolygon::remove(sal_uInt32 nIndex, sal_uInt32 nCount) in remove() argument
373 OSL_ENSURE(nIndex + nCount <= mpPolyPolygon->count(), "B3DPolyPolygon Remove outside range (!)"); in remove()
376 mpPolyPolygon->remove(nIndex, nCount); in remove()