Home
last modified time | relevance | path

Searched refs:nY2 (Results 26 – 50 of 76) sorted by relevance

1234

/trunk/main/sc/source/ui/dbgui/
H A Dcsvgrid.cxx1129 sal_Int32 nY2 = GetY( GetLastVisLine() + 1 ); in ImplDrawColumnBackgr() local
1131 Rectangle aRect( nX1, nHdrHt, nX2, nY2 ); in ImplDrawColumnBackgr()
1135 maBackgrDev.DrawLine( Point( nX2, nHdrHt ), Point( nX2, nY2 ) ); in ImplDrawColumnBackgr()
1336 sal_Int32 nY2 = Min( GetY( GetLastVisLine() + 1 ), GetHeight() ) - 1; in ImplDrawTrackingRect() local
1337 InvertTracking( Rectangle( nX1, 0, nX2, nY2 ), SHOWTRACK_SMALL | SHOWTRACK_WINDOW ); in ImplDrawTrackingRect()
/trunk/main/sc/source/ui/view/
H A Doutput3.cxx66 nDataHeight += pDoc->GetRowHeight( nY1, nY2, nTab ); in PrePrintDrawingLayer()
83 aRect.Bottom() += pDoc->GetRowHeight( nY1, nY2, nTab ); in PrePrintDrawingLayer()
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 Doutput.cxx154 nY2( nNewY2 ), in ScOutputData()
194 nVisY2 = nY2; in ScOutputData()
602 SCROW nEndY = Min( aRange.aEnd.Row(), nY2 ); in SetPagebreakMode()
2099 SCROW nEndY = nY2; in DrawChangeTrack()
/trunk/main/sd/source/ui/slidesorter/controller/
H A DSlsAnimationFunction.cxx168 const double nY2) in AnimationBezierFunction() argument
172 mnY2(nY2) in AnimationBezierFunction()
/trunk/main/vcl/unx/generic/gdi/
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()
H A Dsalgdi3.cxx671 const int nY2 = nY1 + pRawBitmap->mnHeight; in DrawServerAAForcedString() local
679 nYmax = nY2; in DrawServerAAForcedString()
686 if( nYmax < nY2 ) nYmax = nY2; in DrawServerAAForcedString()
/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/core/data/
H A Ddocumen3.cxx1710 SCROW nY2 = nY1; in GetRange() local
1712 if (lcl_AddTwipsWhile( nSize, nTwips, nY2, MAXROW, pTable) && nY2 < MAXROW) in GetRange()
1713 ++nY2; // original loop ended on last matched +1 unless that was MAXROW in GetRange()
1715 return ScRange( nX1,nY1,nTab, nX2,nY2,nTab ); in GetRange()
H A Dtable4.cxx627 SCROW nY2 = static_cast<SCROW>(Max( nIStart, nIEnd )); in FillAuto() local
629 aCol[nCol].ApplyStyleArea( nY1, nY2, *pStyleSheet ); in FillAuto()
631 aCol[nCol].ApplyPatternArea( nY1, nY2, *pNewPattern ); in FillAuto()
633 aCol[nCol].ApplyPatternArea( nY1, nY2, *pSrcPattern ); in FillAuto()
/trunk/main/vcl/inc/
H A Dsalgdi.hxx118 virtual void drawLine( long nX1, long nY1, long nX2, long nY2 ) = 0;
371 …void DrawLine( long nX1, long nY1, long nX2, long nY2, const OutputDevice *pOut…
/trunk/main/svtools/source/control/
H A Druler.cxx339 void Ruler::ImplVDrawLine( long nX1, long nY1, long nX2, long nY2 ) in ImplVDrawLine() argument
356 maVirDev.DrawLine( Point( nX1, nY1 ), Point( nX2, nY2 ) ); in ImplVDrawLine()
358 maVirDev.DrawLine( Point( nY1, nX1 ), Point( nY2, nX2 ) ); in ImplVDrawLine()
363 void Ruler::ImplVDrawRect( long nX1, long nY1, long nX2, long nY2 ) in ImplVDrawRect() argument
380 maVirDev.DrawRect( Rectangle( nX1, nY1, nX2, nY2 ) ); in ImplVDrawRect()
382 maVirDev.DrawRect( Rectangle( nY1, nX1, nY2, nX2 ) ); in ImplVDrawRect()
/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.hxx140 virtual void drawLine( long nX1, long nY1, long nX2, long nY2 );
/trunk/main/sc/source/filter/inc/
H A Dscfobj.hxx36 SCTAB nSrcTab, sal_uInt16 nX1, sal_uInt16 nY1, sal_uInt16 nX2, sal_uInt16 nY2 );
/trunk/main/sc/source/ui/inc/
H A Dgridmerg.hxx52 void AddVerLine( long nX, long nY1, long nY2 );
/trunk/main/oox/source/export/
H A Dvmlexport.cxx468 … sal_Int32 nY2 = impl_GetPointComponent( pVerticesIt, nPointSize ); in Commit() local
472 .append( nX2 ).append( "," ).append( nY2 ).append( "," ) in Commit()
/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/inc/controller/
H A DSlsAnimationFunction.hxx124 const double nY2);
/trunk/main/vcl/os2/source/gdi/
H A Dsalgdi.cxx463 void Os2SalGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) in drawLine() argument
471 aPt.y = TY( nY2 ); in drawLine()
/trunk/main/vcl/source/gdi/
H A Doutdev4.cxx68 const long nY2 = ( (Point*) p2 )->Y(); in ImplHatchCmpFnc() local
70 return ( nX1 > nX2 ? 1 : nX1 == nX2 ? nY1 > nY2 ? 1: nY1 == nY2 ? 0 : -1 : -1 ); in ImplHatchCmpFnc()
H A Dsalgdilayout.cxx418 void SalGraphics::DrawLine( long nX1, long nY1, long nX2, long nY2, const OutputDevice *pOutDev ) in DrawLine() argument
425 drawLine( nX1, nY1, nX2, nY2 ); in DrawLine()
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()
/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()

Completed in 236 milliseconds

1234