Lines Matching refs:nY

81 …long		nY = ( rRect.Top() >= aDstRect.Top() ) ? rRect.Top() : ( rRect.Top() + ( ( aDstRect.Top() - …  in DBG_NAMEEX()  local
86 const long nStartY = ImplLogicYToDevicePixel( nY ); in DBG_NAMEEX()
98 while( ( nY += nDistY ) <= nBottom ) in DBG_NAMEEX()
99 aVertBuf[ nVertCount++ ] = ImplLogicYToDevicePixel( nY ); in DBG_NAMEEX()
131 nY = aVertBuf[ i ]; in DBG_NAMEEX()
132 mpGraphics->DrawLine( nStartX, nY, nEndX, nY, this ); in DBG_NAMEEX()
501 long nX, nY; in DrawTransparent() local
520 for( nY = 0; nY < nHeight; nY++ ) in DrawTransparent()
522 Scanline pWScan = pW->GetScanline( nY ); in DrawTransparent()
523 Scanline pRScan = pR->GetScanline( nY ); in DrawTransparent()
538 for( nY = 0; nY < nHeight; nY++ ) in DrawTransparent()
540 if( pR->GetPixel( nY, nX ) == aBlack ) in DrawTransparent()
541 … pW->SetPixel( nY, nX, pMap[ pW->GetPixel( nY, nX ).GetIndex() ] ); in DrawTransparent()
553 for( nY = 0; nY < nHeight; nY++ ) in DrawTransparent()
555 Scanline pWScan = pW->GetScanline( nY ); in DrawTransparent()
556 Scanline pRScan = pR->GetScanline( nY ); in DrawTransparent()
575 for( nY = 0; nY < nHeight; nY++ ) in DrawTransparent()
579 if( pR->GetPixel( nY, nX ) == aBlack ) in DrawTransparent()
581 aPixCol = pW->GetColor( nY, nX ); in DrawTransparent()
582 … pW->SetPixel( nY, nX, aPixCol.Merge( aFillCol, cTrans ) ); in DrawTransparent()
792 void OutputDevice::ImplDrawColorWallpaper( long nX, long nY, in ImplDrawColorWallpaper() argument
803 DrawRect( Rectangle( Point( nX, nY ), Size( nWidth, nHeight ) ) ); in ImplDrawColorWallpaper()
811 void OutputDevice::ImplDrawBitmapWallpaper( long nX, long nY, in ImplDrawBitmapWallpaper() argument
864 ImplDrawGradientWallpaper( nX, nY, nWidth, nHeight, rWallpaper ); in ImplDrawBitmapWallpaper()
867 ImplDrawColorWallpaper( nX, nY, nWidth, nHeight, rWallpaper ); in ImplDrawBitmapWallpaper()
880 aPos = Point( nX, nY ); in ImplDrawBitmapWallpaper()
887 IntersectClipRegion( Rectangle( Point( nX, nY ), Size( nWidth, nHeight ) ) ); in ImplDrawBitmapWallpaper()
955 const long nBottom = nY + nHeight - 1L; in ImplDrawBitmapWallpaper()
971 const long nOffY = ( nFirstY - nY ) % nBmpHeight; in ImplDrawBitmapWallpaper()
973 long nStartY = nY + nOffY; in ImplDrawBitmapWallpaper()
998 const Rectangle aColRect( Point( nX, nY ), Size( nWidth, nHeight ) ); in ImplDrawBitmapWallpaper()
1054 void OutputDevice::ImplDrawGradientWallpaper( long nX, long nY, in ImplDrawGradientWallpaper() argument
1068 aBound = Rectangle( Point( nX, nY ), Size( nWidth, nHeight ) ); in ImplDrawGradientWallpaper()
1073 IntersectClipRegion( Rectangle( Point( nX, nY ), Size( nWidth, nHeight ) ) ); in ImplDrawGradientWallpaper()
1086 … ImplDrawColorWallpaper( nX, nY, nWidth, nHeight, rWallpaper.GetGradient().GetEndColor() ); in ImplDrawGradientWallpaper()
1090 aBound = Rectangle( Point( -mnOutOffX, nY ), Size( gradientWidth, nHeight ) ); in ImplDrawGradientWallpaper()
1104 void OutputDevice::ImplDrawWallpaper( long nX, long nY, in ImplDrawWallpaper() argument
1109 ImplDrawBitmapWallpaper( nX, nY, nWidth, nHeight, rWallpaper ); in ImplDrawWallpaper()
1111 ImplDrawGradientWallpaper( nX, nY, nWidth, nHeight, rWallpaper ); in ImplDrawWallpaper()
1113 ImplDrawColorWallpaper( nX, nY, nWidth, nHeight, rWallpaper ); in ImplDrawWallpaper()
1271 for(sal_uInt32 y(0), nY(rPos.Y()); nY < nMaxY; y++, nY += nLen) in DrawCheckered() local
1273 const sal_uInt32 nBottom(std::min(nMaxY, nY + nLen)); in DrawCheckered()
1276 DrawRect(Rectangle(nX, nY, nRight, nBottom)); in DrawCheckered()