Lines Matching refs:count

171 	sal_uInt32 count() const  in count()  function in CoordinateDataArray3D
303 sal_uInt32 count() const in count() function in BColorArray
467 sal_uInt32 count() const in count() function in NormalsArray3D
642 sal_uInt32 count() const in count() function in TextureCoordinate2D
917 sal_uInt32 count() const in count() function in ImplB3DPolygon
919 return maPoints.count(); in count()
1095 mpBColors = new BColorArray(maPoints.count()); in setBColor()
1154 mpNormals = new NormalsArray3D(maPoints.count()); in setNormal()
1210 mpTextureCoordiantes = new TextureCoordinate2D(maPoints.count()); in setTextureCoordinate()
1250 const sal_uInt32 nCount(rSource.maPoints.count()); in insert()
1261 mpBColors = new BColorArray(maPoints.count()); in insert()
1278 mpNormals = new NormalsArray3D(maPoints.count()); in insert()
1295 mpTextureCoordiantes = new TextureCoordinate2D(maPoints.count()); in insert()
1354 if(maPoints.count() > 1) in flip()
1386 const sal_uInt32 nIndex(maPoints.count() - 1L); in hasDoublePoints()
1410 for(sal_uInt32 a(0L); a < maPoints.count() - 1L; a++) in hasDoublePoints()
1447 if(maPoints.count() > 1L) in removeDoublePointsAtBeginEnd()
1449 const sal_uInt32 nIndex(maPoints.count() - 1L); in removeDoublePointsAtBeginEnd()
1470 const sal_uInt32 nIndex(maPoints.count() - 1L); in removeDoublePointsAtBeginEnd()
1483 while((maPoints.count() > 1L) && (nIndex <= maPoints.count() - 2L)) in removeDoublePointsWholeTrack()
1552 …OSL_ENSURE(nIndex + nCount > rPolygon.mpPolygon->count(), "B3DPolygon constructor outside range (!… in B3DPolygon()
1583 sal_uInt32 B3DPolygon::count() const in count() function in basegfx::B3DPolygon
1585 return mpPolygon->count(); in count()
1590 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in getB3DPoint()
1597 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in setB3DPoint()
1605 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in getBColor()
1612 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in setBColor()
1636 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in getNormal()
1643 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in setNormal()
1668 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in getTextureCoordinate()
1675 OSL_ENSURE(nIndex < mpPolygon->count(), "B3DPolygon access outside range (!)"); in setTextureCoordinate()
1700 OSL_ENSURE(nIndex <= mpPolygon->count(), "B3DPolygon Insert outside range (!)"); in insert()
1709 mpPolygon->insert(mpPolygon->count(), rPoint, nCount); in append()
1714 OSL_ENSURE(nIndex <= mpPolygon->count(), "B3DPolygon Insert outside range (!)"); in insert()
1716 if(rPoly.count()) in insert()
1720 nCount = rPoly.count(); in insert()
1723 if(0L == nIndex2 && nCount == rPoly.count()) in insert()
1729 OSL_ENSURE(nIndex2 + nCount <= rPoly.mpPolygon->count(), "B3DPolygon Insert outside range (!)"); in insert()
1738 if(rPoly.count()) in append()
1742 nCount = rPoly.count(); in append()
1745 if(0L == nIndex && nCount == rPoly.count()) in append()
1747 mpPolygon->insert(mpPolygon->count(), *rPoly.mpPolygon); in append()
1751 OSL_ENSURE(nIndex + nCount <= rPoly.mpPolygon->count(), "B3DPolygon Append outside range (!)"); in append()
1753 mpPolygon->insert(mpPolygon->count(), aTempPoly); in append()
1760 OSL_ENSURE(nIndex + nCount <= mpPolygon->count(), "B3DPolygon Remove outside range (!)"); in remove()
1784 if(count() > 1) in flip()
1790 return (mpPolygon->count() > 1L && mpPolygon->hasDoublePoints()); in hasDoublePoints()
1804 if(mpPolygon->count() && !rMatrix.isIdentity()) in transform()