| /AOO41X/main/vcl/source/gdi/ |
| H A D | bitmap.cxx | 635 for( long nX = 0L; nX < nWidth; nX++ ) in Invert() local 637 pAcc->SetPixel( nY, nX, pAcc->GetPixel( nY, nX ).Invert() ); in Invert() 668 for( long nX = 0L, nOther = nWidth1; nX < nWidth_2; nX++, nOther-- ) in Mirror() local 670 const BitmapColor aTemp( pAcc->GetPixel( nY, nX ) ); in Mirror() 672 pAcc->SetPixel( nY, nX, pAcc->GetPixel( nY, nOther ) ); in Mirror() 718 for( long nX = 0L, nOtherX = nWidth1; nX < nWidth; nX++, nOtherX-- ) in Mirror() local 720 const BitmapColor aTemp( pAcc->GetPixel( nY, nX ) ); in Mirror() 722 pAcc->SetPixel( nY, nX, pAcc->GetPixel( nOtherY, nOtherX ) ); in Mirror() 730 … for( long nX = 0L, nOtherX = nWidth1, nWidth_2 = nWidth >> 1; nX < nWidth_2; nX++, nOtherX-- ) in Mirror() local 732 const BitmapColor aTemp( pAcc->GetPixel( nHeight_2, nX ) ); in Mirror() [all …]
|
| H A D | bitmap3.cxx | 46 nTemp = p1T[nX++] >> 12; \ 49 nTemp = p1T[nX++] >> 12; \ 52 nTemp = p1T[nX] >> 12; \ 57 p2T[nX++] += FloydError3[nBErr]; \ 58 p2T[nX++] += FloydError3[nGErr]; \ 59 p2T[nX++] += FloydError3[nRErr]; 62 p2T[nX++] += FloydError5[nBErr]; \ 63 p2T[nX++] += FloydError5[nGErr]; \ 64 p2T[nX++] += FloydError5[nRErr]; 67 p1T[++nX] += FloydError7[nBErr]; \ [all …]
|
| H A D | pngread.cxx | 1196 for ( sal_Int32 nX = nXStart, nShift = 0; nX < maOrigSize.Width(); nX += nXAdd ) in ImplDrawScanline() local 1206 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline() 1211 for ( sal_Int32 nX = nXStart, nShift = 0; nX < maOrigSize.Width(); nX += nXAdd ) in ImplDrawScanline() local 1222 ImplSetPixel( nY, nX, nCol ); in ImplDrawScanline() 1234 … for ( sal_Int32 nX = nXStart, nXIndex = 0; nX < maOrigSize.Width(); nX += nXAdd, ++nXIndex ) in ImplDrawScanline() local 1238 … ImplSetAlphaPixel( nY, nX, *pTmp & 0x0f, mpTransTab[ *pTmp & 0x0f ] ); in ImplDrawScanline() 1243 … ImplSetAlphaPixel( nY, nX, ( *pTmp >> 4 ) & 0x0f, mpTransTab[ *pTmp >> 4 ] ); in ImplDrawScanline() 1249 … for ( sal_Int32 nX = nXStart, nXIndex = 0; nX < maOrigSize.Width(); nX += nXAdd, nXIndex++ ) in ImplDrawScanline() local 1275 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline() 1283 … for ( sal_Int32 nX = nXStart, nXIndex = 0; nX < maOrigSize.Width(); nX += nXAdd, nXIndex++ ) in ImplDrawScanline() local [all …]
|
| H A D | bmpacc2.cxx | 35 return BitmapColor( pScanline[ nX >> 3 ] & ( 1 << ( 7 - ( nX & 7 ) ) ) ? 1 : 0 ); in IMPL_FORMAT_GETPIXEL_NOMASK() 42 sal_uInt8& rByte = pScanline[ nX >> 3 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() 44 ( rBitmapColor.GetIndex() & 1 ) ? ( rByte |= 1 << ( 7 - ( nX & 7 ) ) ) : in IMPL_FORMAT_SETPIXEL_NOMASK() 45 ( rByte &= ~( 1 << ( 7 - ( nX & 7 ) ) ) ); in IMPL_FORMAT_SETPIXEL_NOMASK() 52 return BitmapColor( pScanline[ nX >> 3 ] & ( 1 << ( nX & 7 ) ) ? 1 : 0 ); in IMPL_FORMAT_GETPIXEL_NOMASK() 59 sal_uInt8& rByte = pScanline[ nX >> 3 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() 61 ( rBitmapColor.GetIndex() & 1 ) ? ( rByte |= 1 << ( nX & 7 ) ) : in IMPL_FORMAT_SETPIXEL_NOMASK() 62 ( rByte &= ~( 1 << ( nX & 7 ) ) ); in IMPL_FORMAT_SETPIXEL_NOMASK() 69 return BitmapColor( ( pScanline[ nX >> 1 ] >> ( nX & 1 ? 0 : 4 ) ) & 0x0f ); in IMPL_FORMAT_GETPIXEL_NOMASK() 76 sal_uInt8& rByte = pScanline[ nX >> 1 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() [all …]
|
| H A D | bitmap4.cxx | 130 long nY, nX, i, nSumR, nSumG, nSumB, nMatrixVal, nTmp; in ImplConvolute3() local 136 for( nX = nTmp = 0, nMatrixVal = pMatrix[ nY ]; nX < 256; nX++, nTmp += nMatrixVal ) in ImplConvolute3() 137 pKoeff[ nY ][ nX ] = nTmp; in ImplConvolute3() 162 for( nX = 0; nX < nWidth; nX++ ) in ImplConvolute3() 165 nSumR = ( pTmp = pKoeff[ 0 ] )[ ( pColor = pRowTmp1 + nX )->GetRed() ]; in ImplConvolute3() 178 nSumR += ( pTmp = pKoeff[ 3 ] )[ ( pColor = pRowTmp2 + nX )->GetRed() ]; in ImplConvolute3() 191 nSumR += ( pTmp = pKoeff[ 6 ] )[ ( pColor = pRowTmp3 + nX )->GetRed() ]; in ImplConvolute3() 204 … pWriteAcc->SetPixel( nY, nX, BitmapColor( (sal_uInt8) MinMax( nSumR / nDivisor, 0, 255 ), in ImplConvolute3() 277 long nY, nX, i; in ImplMedianFilter() local 308 for( nX = 0; nX < nWidth; nX++ ) in ImplMedianFilter() [all …]
|
| H A D | dibtools.cxx | 296 sal_uLong nX = 0UL; in ImplDecodeRLE() local 316 if( nX < nWidth ) in ImplDecodeRLE() 317 rAcc.SetPixelIndex( nY, nX++, cTmp >> 4 ); in ImplDecodeRLE() 319 if( nX < nWidth ) in ImplDecodeRLE() 320 rAcc.SetPixelIndex( nY, nX++, cTmp & 0x0f ); in ImplDecodeRLE() 325 if( nX < nWidth ) in ImplDecodeRLE() 326 rAcc.SetPixelIndex( nY, nX++, *pRLE >> 4 ); in ImplDecodeRLE() 338 if( nX < nWidth ) in ImplDecodeRLE() 339 rAcc.SetPixelIndex( nY, nX++, *pRLE ); in ImplDecodeRLE() 351 nX = 0UL; in ImplDecodeRLE() [all …]
|
| H A D | impvect.cxx | 261 inline void Set( long nY, long nX, sal_uInt8 cVal ); 262 inline sal_uInt8 Get( long nY, long nX ) const; 264 inline sal_Bool IsFree( long nY, long nX ) const; 265 inline sal_Bool IsCont( long nY, long nX ) const; 266 inline sal_Bool IsDone( long nY, long nX ) const; 298 inline void ImplVectMap::Set( long nY, long nX, sal_uInt8 cVal ) in Set() argument 300 const sal_uInt8 cShift = sal::static_int_cast<sal_uInt8>(6 - ( ( nX & 3 ) << 1 )); in Set() 301 ( ( mpScan[ nY ][ nX >> 2 ] ) &= ~( 3 << cShift ) ) |= ( cVal << cShift ); in Set() 306 inline sal_uInt8 ImplVectMap::Get( long nY, long nX ) const in Get() 308 …return sal::static_int_cast<sal_uInt8>( ( ( mpScan[ nY ][ nX >> 2 ] ) >> ( 6 - ( ( nX & 3 ) << 1 )… in Get() [all …]
|
| H A D | bmpacc3.cxx | 137 long nX, nY; in DrawLine() local 144 nX = rStart.X(); in DrawLine() 150 SetPixel( nY, nX, rLineColor ); in DrawLine() 155 SetPixel( nY, nX, rLineColor ); in DrawLine() 163 nX = rStart.X(); in DrawLine() 166 if ( nEndX > nX ) in DrawLine() 168 for (; nX <= nEndX; nX++ ) in DrawLine() 169 SetPixel( nY, nX, rLineColor ); in DrawLine() 173 for (; nX >= nEndX; nX-- ) in DrawLine() 174 SetPixel( nY, nX, rLineColor ); in DrawLine() [all …]
|
| H A D | alpha.cxx | 201 for( long nX = nSrcX, nXN = nDstX; nX <= nSrcEndX1; nX++, nXN++ ) in CopyPixel() local 202 pWriteAcc->SetPixel( nYN, nXN, pWriteAcc->GetPixel( nY, nX ) ); in CopyPixel() 207 for( long nX = nSrcX, nXN = nDstX; nX <= nSrcEndX1; nX++, nXN++ ) in CopyPixel() local 208 pWriteAcc->SetPixel( nYN, nXN, pWriteAcc->GetPixel( nY, nX ) ); in CopyPixel() 213 for( long nX = nSrcEndX1, nXN = nDstEndX1; nX >= nSrcX; nX--, nXN-- ) in CopyPixel() local 214 pWriteAcc->SetPixel( nYN, nXN, pWriteAcc->GetPixel( nY, nX ) ); in CopyPixel() 219 for( long nX = nSrcEndX1, nXN = nDstEndX1; nX >= nSrcX; nX--, nXN-- ) in CopyPixel() local 220 pWriteAcc->SetPixel( nYN, nXN, pWriteAcc->GetPixel( nY, nX ) ); in CopyPixel() 259 for( long nX = 0L; nX < nWidth; nX++ ) in Invert() local 261 aCol.SetIndex( pMap[ pAcc->GetPixel( nY, nX ).GetIndex() ] ); in Invert() [all …]
|
| H A D | salmisc.cxx | 114 for( long nX = 0L; nX < nWidth; nX++ ) in ImplPALToPAL() local 115 …pFncSetPixel( pDstScan, nX, pColMapBuf[ pFncGetPixel( pSrcScan, pMapX[ nX ], rSrcMask ).GetIndex()… in ImplPALToPAL() 142 for( long nX = 0L; nX < nWidth; ) in ImplPALToTC() local 144 nMapX = pMapX[ nX ]; in ImplPALToTC() 145 pFncSetPixel( pDstScan, nX++, in ImplPALToTC() 161 for( long nX = 0L; nX < nWidth; ) in ImplPALToTC() local 163 nMapX = pMapX[ nX ]; in ImplPALToTC() 164 pFncSetPixel( pDstScan, nX++, in ImplPALToTC() 178 for( long nX = 0L; nX < nWidth; nX++ ) in ImplPALToTC() local 179 pFncSetPixel( pDstScan, nX, pColBuf[ pSrcScan[ pMapX[ nX ] ] ], rDstMask ); in ImplPALToTC() [all …]
|
| H A D | outdev6.cxx | 80 …long nX = ( rRect.Left() >= aDstRect.Left() ) ? rRect.Left() : ( rRect.Left() + ( ( aDstRec… 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() [all …]
|
| H A D | outdev2.cxx | 1521 long nX = ImplLogicXToDevicePixel( rSrcPt.X() ); in GetBitmap() local 1528 …if ( nWidth > 0 && nHeight > 0 && nX <= (mnOutWidth + mnOutOffX) && nY <= (mnOutHeight + mnOutOff… in GetBitmap() 1530 Rectangle aRect( Point( nX, nY ), Size( nWidth, nHeight ) ); in GetBitmap() 1534 if ( nX < mnOutOffX ) in GetBitmap() 1536 nWidth -= ( mnOutOffX - nX ); in GetBitmap() 1537 nX = mnOutOffX; in GetBitmap() 1550 if ( (nWidth + nX) > (mnOutWidth + mnOutOffX) ) in GetBitmap() 1552 nWidth = mnOutOffX + mnOutWidth - nX; in GetBitmap() 1577 aPosAry.mnSrcX = nX; in GetBitmap() 1606 SalBitmap* pSalBmp = mpGraphics->GetBitmap( nX, nY, nWidth, nHeight, this ); in GetBitmap() [all …]
|
| H A D | pngwrite.cxx | 515 sal_uLong nX, nXIndex; in ImplGetFilter() local 516 for ( nX = nXStart, nXIndex = 0; nX < mnWidth; nX+=nXAdd, nXIndex++ ) in ImplGetFilter() 520 *pDest = mpAccess->GetPixelIndex( nY, nX ) << nShift; in ImplGetFilter() 522 *pDest++ |= mpAccess->GetPixelIndex( nY, nX ) << nShift; in ImplGetFilter() 524 *pDest |= mpAccess->GetPixelIndex( nY, nX ) << nShift; in ImplGetFilter() 532 sal_uLong nX, nXIndex; in ImplGetFilter() local 533 for ( nX = nXStart, nXIndex = 0; nX < mnWidth; nX+= nXAdd, nXIndex++ ) in ImplGetFilter() 536 *pDest++ |= mpAccess->GetPixelIndex( nY, nX ); in ImplGetFilter() 538 *pDest = mpAccess->GetPixelIndex( nY, nX ) << 4; in ImplGetFilter() 546 for ( sal_uLong nX = nXStart; nX < mnWidth; nX+=nXAdd ) in ImplGetFilter() local [all …]
|
| H A D | bmpacc.cxx | 342 const sal_Int32 nX(static_cast< sal_Int32 >(fX)); in GetInterpolatedColorWithFallback() local 345 if(nX < mpBuffer->mnWidth && nY < mpBuffer->mnHeight) in GetInterpolatedColorWithFallback() 348 BitmapColor aRetval(GetColor(nY, nX)); in GetInterpolatedColorWithFallback() 351 sal_Int16 nDeltaX((fX - (nX + 0.5)) * 255.0); // [-255 .. 255] in GetInterpolatedColorWithFallback() 358 nIndX = nX + 1; in GetInterpolatedColorWithFallback() 362 nIndX = nX - 1; in GetInterpolatedColorWithFallback() 389 aYCol = GetColor(nIndY, nX); in GetInterpolatedColorWithFallback() 431 const sal_Int32 nX(static_cast< sal_Int32 >(fX)); in GetColorWithFallback() local 434 if(nX < mpBuffer->mnWidth && nY < mpBuffer->mnHeight) in GetColorWithFallback() 436 return GetColor(nY, nX); in GetColorWithFallback() [all …]
|
| H A D | impimage.cxx | 442 long nX, nY; in Draw() local 453 for( nX = 0L; nX < 256L; nX++ ) in Draw() 455 … pMapR[ nX ] = (sal_uInt8) ( ( ( nY = ( nX + cR ) >> 1 ) > 255 ) ? 255 : nY ); in Draw() 456 … pMapG[ nX ] = (sal_uInt8) ( ( ( nY = ( nX + cG ) >> 1 ) > 255 ) ? 255 : nY ); in Draw() 457 … pMapB[ nX ] = (sal_uInt8) ( ( ( nY = ( nX + cB ) >> 1 ) > 255 ) ? 255 : nY ); in Draw() 477 for( nX = 0L; nX < nW; nX++ ) in Draw() 489 for( nX = 0L; nX < nW; nX++ ) in Draw() 491 aCol = pAcc->GetPixel( nY, nX ); in Draw() 495 pAcc->SetPixel( nY, nX, aCol ); in Draw() 613 for( int nX = nLeft; nX < nRight; ++nX ) in ImplUpdateDisabledBmpEx() local [all …]
|
| /AOO41X/main/filter/source/graphicfilter/ipsd/ |
| H A D | ipsd.cxx | 343 sal_uLong nX, nY; in ImplReadBody() local 348 nX = nY = 0; in ImplReadBody() 371 mpWriteAcc->SetPixelIndex( nY, nX, nDat >> nBitCount-- ); in ImplReadBody() 372 if ( ++nX == mpFileHeader->nColumns ) in ImplReadBody() 374 nX = 0; in ImplReadBody() 392 mpWriteAcc->SetPixelIndex( nY, nX, nDat >> nBitCount-- ); in ImplReadBody() 393 if ( ++nX == mpFileHeader->nColumns ) in ImplReadBody() 395 nX = 0; in ImplReadBody() 421 mpWriteAcc->SetPixelIndex( nY, nX, nDat ); in ImplReadBody() 422 if ( ++nX == mpFileHeader->nColumns ) in ImplReadBody() [all …]
|
| /AOO41X/main/svtools/source/graphic/ |
| H A D | grfmgr2.cxx | 534 long nX, nY, nTmp, nTmpX, nTmpY; in ImplCreateOutput() local 544 for( nX = 0L, nTmpX = nW - 1L, nTmp = nW - 2L; nX < nNewW; nX++ ) in ImplCreateOutput() 546 fTmp = nX * fRevScaleX; in ImplCreateOutput() 551 … pMapFX[ nX ] = (long) ( ( fTmp - ( pMapIX[ nX ] = MinMax( (long) fTmp, 0, nTmp ) ) ) * 1048576. ); in ImplCreateOutput() 572 for( nX = 0L, nTmpX = nW - 1L, nTmp = nW - 2L; nX < nNewW; nX++ ) in ImplCreateOutput() 574 fTmp = nX * fRevScaleX; in ImplCreateOutput() 580 pMapIX[ nX ] = MinMax( (long) fTmp, 0, nTmp ); in ImplCreateOutput() 581 pMapFX[ nX ] = fTmp >= nTmp+1 ? 1048576 : 0; in ImplCreateOutput() 1033 long nX, nY, nTmpX, nTmpY, nTmpFX, nTmpFY; in ImplCreateScaled() local 1060 for( nX = nStartX, nXDst = 0L; nX <= nEndX; nX++ ) in ImplCreateScaled() [all …]
|
| /AOO41X/main/sc/source/ui/view/ |
| H A D | output.cxx | 198 for (SCCOL nX=nVisX1; nX<=nVisX2; nX++) in ScOutputData() local 199 nScrW += pRowInfo[0].pCellInfo[nX+1].nWidth; in ScOutputData() 296 SCCOL nX; in DrawGrid() local 346 for (nX=nX1; nX<=nX2; nX++) in DrawGrid() 348 SCCOL nXplus1 = nX+1; in DrawGrid() 349 SCCOL nXplus2 = nX+2; in DrawGrid() 387 if ( nX == MAXCOL ) in DrawGrid() 396 if ( nX<MAXCOL && !bSingle ) in DrawGrid() 410 if ( nX<MAXCOL && bSingle ) in DrawGrid() 610 for (SCCOL nX=nStartX; nX<=nEndX; nX++) in SetPagebreakMode() local [all …]
|
| /AOO41X/main/filter/source/graphicfilter/itga/ |
| H A D | itga.cxx | 286 long nY, nYAdd, nX, nXAdd, nXStart; in ImplReadBody() local 288 nX = nXStart = nY = 0; in ImplReadBody() 294 nX = nXStart = mpFileHeader->nImageWidth - 1; in ImplReadBody() 328 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody() 329 nX += nXAdd; in ImplReadBody() 333 nX = nXStart; in ImplReadBody() 353 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody() 354 nX += nXAdd; in ImplReadBody() 358 nX = nXStart; in ImplReadBody() 383 mpAcc->SetPixelIndex( nY, nX, nDummy ); in ImplReadBody() [all …]
|
| /AOO41X/main/vcl/inc/vcl/ |
| H A D | bmpacc.hxx | 39 static BitmapColor GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMask& rMask ); 42 static void SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmapColor, cons… 49 BitmapColor BitmapReadAccess::GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMas… 52 BitmapColor BitmapReadAccess::GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMas… 55 void BitmapReadAccess::SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmap… 58 void BitmapReadAccess::SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmap… 74 typedef BitmapColor (*FncGetPixel)( ConstScanline pScanline, long nX, const ColorMask& rMask ); 75 typedef void (*FncSetPixel)( Scanline pScanline, long nX, const BitmapColor& rBitmapColor, const Co… 168 inline BitmapColor GetPixelFromData( const sal_uInt8* pData, long nX ) const; 169 …inline void SetPixelOnData( sal_uInt8* pData, long nX, const BitmapColor& rBitmapC… [all …]
|
| /AOO41X/main/cui/source/tabpages/ |
| H A D | tpshadow.cxx | 300 sal_Int32 nX = 0L, nY = 0L; in FillItemSet() local 305 case RP_LT: nX = nY = -nXY; break; in FillItemSet() 307 case RP_RT: nX = nXY; nY = -nXY; break; in FillItemSet() 308 case RP_LM: nX = -nXY; break; in FillItemSet() 309 case RP_RM: nX = nXY; break; in FillItemSet() 310 case RP_LB: nX = -nXY; nY = nXY; break; in FillItemSet() 312 case RP_RB: nX = nY = nXY; break; in FillItemSet() 334 SdrShadowXDistItem aXItem( nX ); in FillItemSet() 336 if ( nX != nOldX && in FillItemSet() 416 … sal_Int32 nX = ( ( const SdrShadowXDistItem& ) rAttrs.Get( SDRATTR_SHADOWXDIST ) ).GetValue(); in Reset() local [all …]
|
| /AOO41X/main/basegfx/source/polygon/ |
| H A D | b2dsvgpolypolygon.cxx | 135 double nX, nY; in importFromSvgD() local 137 … if(!::basegfx::internal::lcl_importDoubleAndSpaces(nX, nPos, rSvgDStatement, nLen)) return false; in importFromSvgD() 142 nX += nLastX; in importFromSvgD() 147 nLastX = nX; in importFromSvgD() 151 aCurrPoly.append(B2DPoint(nX, nY)); in importFromSvgD() 168 double nX, nY(nLastY); in importFromSvgD() local 170 … if(!::basegfx::internal::lcl_importDoubleAndSpaces(nX, nPos, rSvgDStatement, nLen)) return false; in importFromSvgD() 174 nX += nLastX; in importFromSvgD() 178 nLastX = nX; in importFromSvgD() 181 aCurrPoly.append(B2DPoint(nX, nY)); in importFromSvgD() [all …]
|
| /AOO41X/main/svtools/source/contnr/ |
| H A D | imivctl2.cxx | 90 short nX = (short)( ((rRect.Left()+rRect.Right())/2) / nDeltaWidth ); in ImplCreate() local 95 if( nX >= nCols ) in ImplCreate() 96 nX = sal::static_int_cast< short >(nCols - 1); in ImplCreate() 98 sal_uInt16 nIns = GetSortListPos( &pColumns[nX], rRect.Top(), sal_True ); in ImplCreate() 99 pColumns[ nX ].Insert( pEntry, nIns ); in ImplCreate() 104 pEntry->nX = nX; in ImplCreate() 258 sal_uInt16 nX = pEntry->nX; in SearchRow() local 259 if( nX >= nLeft && nX <= nRight ) in SearchRow() 301 sal_uInt16 nX = pCtrlEntry->nX; in GoLeftRight() local 303 DBG_ASSERT(nX< nCols,"GoLeftRight:Bad row"); in GoLeftRight() [all …]
|
| /AOO41X/main/sw/source/core/text/ |
| H A D | itrcrsr.cxx | 464 KSHORT nX = 0; in GetEndCharRect() local 476 nX = nX + pPor->Width(); in GetEndCharRect() 480 nLast = nX; in GetEndCharRect() 553 SwTwips nX = 0; in _GetCharRect() local 572 nX += pPor->Width(); in _GetCharRect() 574 nX += pPor->CalcSpacing( nSpaceAdd, aInf ); in _GetCharRect() 576 nTmpFirst = nX; in _GetCharRect() 584 nTmpFirst = nX; in _GetCharRect() 624 nX = nTmpFirst; in _GetCharRect() 655 nX += pPor->PrtWidth() + in _GetCharRect() [all …]
|
| /AOO41X/main/vcl/unx/generic/gdi/ |
| H A D | salgdi2.cxx | 260 int &nX, in Clip() argument 270 if( int(nX + nDX) <= int(aRect.x) || nX >= int(aRect.x + aRect.width) ) in Clip() 275 if( nX < aRect.x ) in Clip() 277 nSrcX += aRect.x - nX; in Clip() 278 nDX -= aRect.x - nX; in Clip() 279 nX = aRect.x; in Clip() 281 else if( int(nX + nDX) > int(aRect.x + aRect.width) ) in Clip() 282 nDX = aRect.x + aRect.width - nX; in Clip() 297 int X11SalGraphics::Clip( int &nX, in Clip() argument 306 && RectangleOut == Clip( pPaintRegion_, nX, nY, nDX, nDY, nSrcX, nSrcY ) ) in Clip() [all …]
|