Lines Matching refs:nCount

305 void ImplPolygon::ImplRemove( sal_uInt16 nPos, sal_uInt16 nCount )  in ImplRemove()  argument
307 const sal_uInt16 nRemoveCount = Min( (sal_uInt16) ( mnPoints - nPos ), (sal_uInt16) nCount ); in ImplRemove()
1246 sal_uInt16 nCount = mpImplPolygon->mnPoints; in Move() local
1247 for ( sal_uInt16 i = 0; i < nCount; i++ ) in Move()
1262 for ( sal_uInt16 i = 0, nCount = mpImplPolygon->mnPoints; i < nCount; i++ ) in Translate() local
1273 for ( sal_uInt16 i = 0, nCount = mpImplPolygon->mnPoints; i < nCount; i++ ) in Scale() local
1306 for( sal_uInt16 i = 0, nCount = mpImplPolygon->mnPoints; i < nCount; i++ ) in Rotate() local
1324 for( sal_uInt16 i = 0, nCount = mpImplPolygon->mnPoints; i < nCount; i++ ) in SlantX() local
1341 for( sal_uInt16 i = 0, nCount = mpImplPolygon->mnPoints; i < nCount; i++ ) in SlantY() local
1380 for( sal_uInt16 i = 0, nCount = mpImplPolygon->mnPoints; i < nCount; i++ ) in Distort() local
1640 sal_uInt16 nCount = mpImplPolygon->mnPoints; in GetBoundRect() local
1641 if( ! nCount ) in GetBoundRect()
1650 for ( sal_uInt16 i = 0; i < nCount; i++ ) in GetBoundRect()
1712 sal_uInt16 nCount = mpImplPolygon->mnPoints; in IsInside() local
1715 if ( ( nCount > 2 ) && aBound.IsInside( rPoint ) ) in IsInside()
1721 while ( ( aPt1 == mpImplPolygon->mpPointAry[ nCount - 1 ] ) && ( nCount > 3 ) ) in IsInside()
1722 nCount--; in IsInside()
1724 for ( sal_uInt16 i = 1; i <= nCount; i++ ) in IsInside()
1726 const Point& rPt2 = mpImplPolygon->mpPointAry[ ( i < nCount ) ? i : 0 ]; in IsInside()
1806 void Polygon::Remove( sal_uInt16 nPos, sal_uInt16 nCount ) in Remove() argument
1809 if( nCount && ( nPos < mpImplPolygon->mnPoints ) ) in Remove()
1812 mpImplPolygon->ImplRemove( nPos, nCount ); in Remove()
2185 const sal_uInt16 nCount(mpImplPolygon->mnPoints); in getB2DPolygon() local
2187 if(nCount) in getB2DPolygon()
2197 for(sal_uInt16 a(1); a < nCount;) in getB2DPolygon()
2208 if(a < nCount && POLY_CONTROL == mpImplPolygon->mpFlagAry[a]) in getB2DPolygon()
2217 if(a < nCount) in getB2DPolygon()
2254 for(sal_uInt16 a(0); a < nCount; a++) in getB2DPolygon()