Lines Matching refs:nPoints

412 PrinterGfx::DrawPolyLine (sal_uInt32 nPoints, const Point* pPath)  in DrawPolyLine()  argument
414 if( maLineColor.Is() && nPoints && pPath ) in DrawPolyLine()
420 PSBinCurrentPath (nPoints, pPath); in DrawPolyLine()
427 PrinterGfx::DrawPolygon (sal_uInt32 nPoints, const Point* pPath) in DrawPolygon() argument
430 if (!(nPoints > 1) || (pPath == NULL) || !(maFillColor.Is() || maLineColor.Is())) in DrawPolygon()
439 for( unsigned int n = 1; n < nPoints; n++ ) in DrawPolygon()
441 if( pPath[0] != pPath[nPoints-1] ) in DrawPolygon()
526 PrinterGfx::DrawPolyLineBezier (sal_uInt32 nPoints, const Point* pPath, const sal_uInt8* pFlgAry) in DrawPolyLineBezier() argument
531 if ( nPoints > 1 && maLineColor.Is() && pPath ) in DrawPolyLineBezier()
543 for (unsigned int i=1; i<nPoints;) in DrawPolyLineBezier()
552 if (i+2 >= nPoints) in DrawPolyLineBezier()
577 PrinterGfx::DrawPolygonBezier (sal_uInt32 nPoints, const Point* pPath, const sal_uInt8* pFlgAry) in DrawPolygonBezier() argument
582 if (!(nPoints > 1) || (pPath == NULL) || !(maFillColor.Is() || maLineColor.Is())) in DrawPolygonBezier()
587 for (unsigned int i=1; i < nPoints;) in DrawPolygonBezier()
597 if (i+2 >= nPoints) in DrawPolygonBezier()
643 sal_uInt32 nPoints = pPoints[i]; in DrawPolyPolygonBezier() local
645 if( nPoints == 0 || pPtAry[i] == NULL ) in DrawPolyPolygonBezier()
650 for (unsigned int j=1; j < nPoints;) in DrawPolyPolygonBezier()
662 if (j+2 >= nPoints) in DrawPolyPolygonBezier()
961 PrinterGfx::PSBinCurrentPath (sal_uInt32 nPoints, const Point* pPath) in PSBinCurrentPath() argument
969 for (unsigned int i = 1; i < nPoints; i++) in PSBinCurrentPath()