Home
last modified time | relevance | path

Searched refs:nY2 (Results 1 – 25 of 76) sorted by last modified time

1234

/trunk/main/vcl/source/gdi/
H A Doutdev3.cxx3260 long nY2 = nY+nHeight; in ImplGetTextBoundRect() local
3262 ImplRotatePos( nBaseX, nBaseY, nX2, nY2, mpFontEntry->mnOrientation ); in ImplGetTextBoundRect()
3264 nHeight = nY2-nY; in ImplGetTextBoundRect()
H A Dbitmap4.cxx801 long nX, nY, nX1, nX2, nY1, nY2, nSumR, nSumG, nSumB; in ImplMosaic() local
804 nY1 = 0; nY2 = nTileHeight - 1; in ImplMosaic()
806 if( nY2 >= nHeight ) in ImplMosaic()
807 nY2 = nHeight - 1; in ImplMosaic()
816 fArea_1 = 1.0 / ( ( nX2 - nX1 + 1 ) * ( nY2 - nY1 + 1 ) ); in ImplMosaic()
822 for( nY = nY1, nSumR = nSumG = nSumB = 0; nY <= nY2; nY++ ) in ImplMosaic()
837 for( nY = nY1; nY <= nY2; nY++ ) in ImplMosaic()
870 for( nY = nY1; nY <= nY2; nY++ ) in ImplMosaic()
885 nY1 += nTileHeight; nY2 += nTileHeight; in ImplMosaic()
887 if( nY2 >= nHeight ) in ImplMosaic()
[all …]
H A Dbitmap.cxx919 for( long nY = 0, nY2 = nOldY; nY < nNewHeight; nY++, nY2++ ) in Crop() local
921 pWriteAcc->SetPixel( nY, nX, pReadAcc->GetPixel( nY2, nX2 ) ); in Crop()
H A Dregion.cxx1725 long nX1 = pPoints[0].X(), nX2 = pPoints[2].X(), nY1 = pPoints[0].Y(), nY2 = pPoints[2].Y(); in ImplPolygonRectTest() local
1727 …if( ( (pPoints[1].X() == nX1 && pPoints[3].X() == nX2) && (pPoints[1].Y() == nY2 && pPoints[3].Y()… in ImplPolygonRectTest()
1728 …nts[1].X() == nX2 && pPoints[3].X() == nX1) && (pPoints[1].Y() == nY1 && pPoints[3].Y() == nY2) ) ) in ImplPolygonRectTest()
1743 if( nY2 < nY1 ) in ImplPolygonRectTest()
1745 nSwap = nY2; in ImplPolygonRectTest()
1746 nY2 = nY1; in ImplPolygonRectTest()
1755 if( nY2 != nY1 ) in ImplPolygonRectTest()
1757 nY2--; in ImplPolygonRectTest()
1763 pRectOut->Bottom() = nY2; in ImplPolygonRectTest()
/trunk/main/vcl/aqua/source/gdi/
H A Dsalgdi.cxx690 void AquaSalGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
692 if( nX1 == nX2 && nY1 == nY2 ) in drawLine()
704 CGContextAddLineToPoint( mrContext, static_cast<float>(nX2)+0.5, static_cast<float>(nY2)+0.5 ); in drawLine()
707 Rectangle aRefreshRect( nX1, nY1, nX2, nY2 ); in drawLine()
742 long nY2 = nY1; in getBoundRect() local
752 else if( pPtAry[n].mnY > nY2 ) in getBoundRect()
753 nY2 = pPtAry[n].mnY; in getBoundRect()
758 rHeight = nY2 - nY1 + 1; in getBoundRect()
/trunk/main/svx/source/svdraw/
H A Dsvdopath.cxx746 BigInt nY2(aNeuPos2.Y()-aPos.Y()); nY2*=nY2; in movePathDrag() local
748 nX2+=nY2; // Korrekturabstand zum Quadrat in movePathDrag()
/trunk/main/filter/source/graphicfilter/eps/
H A Deps.cxx1648 double nY2(aRectIter->Bottom()); in ImplSetClipRegion() local
1657 ImplWriteDouble( nY2 ); in ImplSetClipRegion()
1660 ImplWriteDouble( nY2 ); in ImplSetClipRegion()
/trunk/main/svtools/inc/svtools/
H A Druler.hxx714 SVT_DLLPRIVATE void ImplVDrawLine( long nX1, long nY1, long nX2, long nY2 );
715 SVT_DLLPRIVATE void ImplVDrawRect( long nX1, long nY1, long nX2, long nY2 );
/trunk/main/sc/source/ui/view/
H A Doutput2.cxx1355 … nLastContentCol - pDoc->GetEmptyLinesInBlock( nX2+1, nY1, nTab, MAXCOL, nY2, nTab, DIR_RIGHT ) ); in DrawStrings()
2147 … nLastContentCol - pDoc->GetEmptyLinesInBlock( nX2+1, nY1, nTab, MAXCOL, nY2, nTab, DIR_RIGHT ) ); in DrawEdit()
H A Dgridwin.cxx4463 SCROW nY2 = nY1 + pViewData->VisibleCellsY( eVWhich ); in UpdateFormulas() local
4466 if (nY2 > MAXROW) nY2 = MAXROW; in UpdateFormulas()
4478 pDoc->ExtendHidden( nX1, nY1, nX2, nY2, nTab ); in UpdateFormulas()
4498 pDoc->FillInfo( aTabInfo, nX1, nY1, nX2, nY2, nTab, nPPTX, nPPTY, sal_False, sal_False ); in UpdateFormulas()
4503 nScrX, nScrY, nX1, nY1, nX2, nY2, nPPTX, nPPTY, in UpdateFormulas()
5558 SCROW nY2 = bDragRect ? nDragEndY : aPagebreakDrag.aEnd.Row(); in UpdateDragRectOverlay() local
5567 if (nY2 < nPosY) nY2 = nPosY; in UpdateDragRectOverlay()
5590 if (ValidRow(nY2) && nY2>=nY1) in UpdateDragRectOverlay()
5591 for (i=nY1; i<=nY2; i++) in UpdateDragRectOverlay()
H A Dprintfun.cxx447 SCROW nY2 = OLE_STD_CELLS_Y - 1; in DrawToDev() local
454 nY2 = aRange.aEnd.Row(); in DrawToDev()
465 nY2 = nY1 + pViewData->VisibleCellsY(eVWhich); in DrawToDev()
466 if (nY2>nY1) --nY2; in DrawToDev()
472 if (nY2 > MAXROW) nY2 = MAXROW; in DrawToDev()
478 ScRange aRange( nX1,nY1,nTab, nX2,nY2,nTab ); in DrawToDev()
1462 for (SCROW nRow=nY1; nRow<=nY2; nRow++) in PrintRowHdr()
1574 if ( nX2 < nX1 || nY2 < nY1 ) in PrintArea()
2722 SCROW nY2; in DoPrint() local
2737 nY2 = maPageRows[nCountY].GetEndRow(); in DoPrint()
[all …]
/trunk/main/sc/source/ui/docshell/
H A Ddocfunc.cxx4496 SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2, in CreateOneName() argument
4511 ScRange( nX1, nY1, nTab, nX2, nY2, nTab ).Format( aContent, SCR_ABS_3D, pDoc ); in CreateOneName()
/trunk/main/sd/source/ui/slidesorter/inc/controller/
H A DSlsAnimationFunction.hxx124 const double nY2);
/trunk/main/sd/source/ui/app/
H A Doptsitem.cxx1045 sal_Int32 nX1, nX2, nY1, nY2; in operator ==() local
1048 rOpt.GetScale( nX2, nY2 ); in operator ==()
1051 ( nY1 == nY2 ) ); in operator ==()
/trunk/main/sd/source/ui/slidesorter/view/
H A DSlsPageObjectPainter.cxx534 const sal_Int32 nY2 (nHeight-nY1); in CreateBackgroundBitmap() local
540 else if (nY>=nY2) in CreateBackgroundBitmap()
545 aColor.Merge(aBottomColor, 255 * (nY2-nY) / (nY2-nY1)); in CreateBackgroundBitmap()
/trunk/main/vcl/inc/win/
H A Dsalgdi.h191 virtual void drawLine( long nX1, long nY1, long nX2, long nY2 );
/trunk/main/scaddins/source/analysis/
H A Danalysishelper.cxx428 sal_uInt16 nD1, nM1, nY1, nD2, nM2, nY2; in GetDiffDate() local
434 DaysToDate( nEndDate, nD2, nM2, nY2 ); in GetDiffDate()
442 nMonths += ( nY2 - nY1 ) * 12; in GetDiffDate()
445 if( nMode == 0 && nM1 == 2 && nM2 != 2 && nY1 == nY2 ) in GetDiffDate()
/trunk/main/canvas/source/vcl/
H A Dcanvashelper_texturefill.cxx997 … const sal_Int32 nY2( ::canvas::tools::roundUp( aTextureSpacePolygonRect.getMaxY() ) ); in fillTexturedPolyPolygon() local
1023 1 : nY2 - nY1 ); in fillTexturedPolyPolygon()
/trunk/main/vcl/win/source/gdi/
H A Dsalgdi.cxx1357 void WinSalGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
1366 if ( nY1 <= nY2 ) in drawLine()
1367 nY2++; in drawLine()
1369 nY2--; in drawLine()
1371 if ( nY1 == nY2 ) in drawLine()
1380 LineTo( getHDC(), (int)nX2, (int)nY2 ); in drawLine()
1388 PatBlt( getHDC(), (int)nX2, (int)nY2, (int)1, (int)1, PATINVERT ); in drawLine()
1393 SetPixel( getHDC(), (int)nX2, (int)nY2, mnPenColor ); in drawLine()
/trunk/main/vcl/unx/headless/
H A Dsvpgdi.cxx317 void SvpSalGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
321 B2IPoint( nX2, nY2 ), in drawLine()
H A Dsvpgdi.hxx121 virtual void drawLine( long nX1, long nY1, long nX2, long nY2 );
H A Dsvppspgraphics.cxx328 void PspGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
330 m_pPrinterGfx->DrawLine (Point(nX1, nY1), Point(nX2, nY2)); in drawLine()
H A Dsvppspgraphics.hxx140 virtual void drawLine( long nX1, long nY1, long nX2, long nY2 );
/trunk/main/vcl/unx/generic/gdi/
H A Dpspgraphics.cxx394 void PspGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
396 m_pPrinterGfx->DrawLine (Point(nX1, nY1), Point(nX2, nY2)); in drawLine()
H A Dsalgdi.cxx810 void X11SalGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
818 XDrawPoint (GetXDisplay(), GetDrawable(), aGC, (int)nX2, (int)nY2); in drawLine()
819 XDrawLine (GetXDisplay(), GetDrawable(), aGC, nX1, nY1, nX2, nY2 ); in drawLine()
823 nX1, nY1, nX2, nY2 ); in drawLine()

Completed in 266 milliseconds

1234