Lines Matching refs:nX

80 …long		nX = ( rRect.Left() >= aDstRect.Left() ) ? rRect.Left() : ( rRect.Left() + ( ( aDstRect.Left…  in DBG_NAMEEX()  local
84 const long nStartX = ImplLogicXToDevicePixel( nX ); in DBG_NAMEEX()
106 while( ( nX += nDistX ) <= nRight ) in DBG_NAMEEX()
107 aHorzBuf[ nHorzCount++ ] = ImplLogicXToDevicePixel( nX ); in DBG_NAMEEX()
140 nX = aHorzBuf[ i ]; in DBG_NAMEEX()
141 mpGraphics->DrawLine( nX, nStartY, nX, nEndY, this ); in DBG_NAMEEX()
501 long nX, nY; in DrawTransparent() local
526 for( nX = 0; nX < nWidth; nX++, cBit >>= 1, pWScan++ ) in DrawTransparent()
539 for( nX = 0; nX < nWidth; nX++ ) in DrawTransparent()
540 if( pR->GetPixel( nY, nX ) == aBlack ) in DrawTransparent()
541 … pW->SetPixel( nY, nX, pMap[ pW->GetPixel( nY, nX ).GetIndex() ] ); in DrawTransparent()
559 … for( nX = 0; nX < nWidth; nX++, cBit >>= 1, pWScan += 3 ) in DrawTransparent()
577 for( nX = 0; nX < nWidth; nX++ ) 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()
954 const long nRight = nX + nWidth - 1L; in ImplDrawBitmapWallpaper()
970 const long nOffX = ( nFirstX - nX ) % nBmpWidth; in ImplDrawBitmapWallpaper()
972 long nStartX = nX + nOffX; 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()
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()
1267 for(sal_uInt32 x(0), nX(rPos.X()); nX < nMaxX; x++, nX += nLen) in DrawCheckered() local
1269 const sal_uInt32 nRight(std::min(nMaxX, nX + nLen)); in DrawCheckered()
1276 DrawRect(Rectangle(nX, nY, nRight, nBottom)); in DrawCheckered()