Lines Matching refs:nPoints

737 static void getBoundRect( sal_uInt32 nPoints, const SalPoint* pPtAry, long &rX, long& rY, long& rWi…  in getBoundRect()  argument
743 for( sal_uInt32 n = 1; n < nPoints; ++n ) in getBoundRect()
767 void AquaSalGraphics::drawPolyLine( sal_uInt32 nPoints, const SalPoint* pPtAry ) in drawPolyLine() argument
769 if( nPoints < 1 ) in drawPolyLine()
775 getBoundRect( nPoints, pPtAry, nX, nY, nWidth, nHeight ); in drawPolyLine()
783 for( sal_uInt32 nPoint = 1; nPoint < nPoints; ++nPoint, ++pPtAry ) in drawPolyLine()
795 void AquaSalGraphics::drawPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry ) in drawPolygon() argument
797 if( nPoints <= 1 ) in drawPolygon()
803 getBoundRect( nPoints, pPtAry, nX, nY, nWidth, nHeight ); in drawPolygon()
823 for( sal_uInt32 nPoint = 1; nPoint < nPoints; ++nPoint, ++pPtAry ) in drawPolygon()
833 for( sal_uInt32 nPoint = 1; nPoint < nPoints; ++nPoint, ++pPtAry ) in drawPolygon()
890 const sal_uInt32 nPoints = pPoints[nPoly]; in drawPolyPolygon() local
891 if( nPoints > 1 ) in drawPolyPolygon()
898 for( sal_uInt32 nPoint = 1; nPoint < nPoints; ++nPoint, ++pPtAry ) in drawPolyPolygon()
911 const sal_uInt32 nPoints = pPoints[nPoly]; in drawPolyPolygon() local
912 if( nPoints > 1 ) in drawPolyPolygon()
917 for( sal_uInt32 nPoint = 1; nPoint < nPoints; ++nPoint, ++pPtAry ) in drawPolyPolygon()
1412 void AquaSalGraphics::invert( sal_uInt32 nPoints, const SalPoint* pPtAry, SalInvert nSalFlags ) in invert() argument
1418 CGpoints = makeCGptArray(nPoints,pPtAry); in invert()
1419 CGContextAddLines ( mrContext, CGpoints, nPoints ); in invert()