Home
last modified time | relevance | path

Searched refs:nPixel (Results 1 – 24 of 24) sorted by relevance

/AOO41X/main/vbahelper/source/vbahelper/
H A Dvbalineformat.cxx359 sal_Int32 nPixel = static_cast< sal_Int32 >( aMillimeter.getInHundredthsOfOneMillimeter() ); in setDashStyle() local
364 pLineDash.DotLen = nPixel; in setDashStyle()
366 pLineDash.DashLen = 5 * nPixel; in setDashStyle()
367 pLineDash.Distance = 4 * nPixel; in setDashStyle()
371 pLineDash.DotLen = nPixel; in setDashStyle()
373 pLineDash.DashLen = 10 * nPixel; in setDashStyle()
374 pLineDash.Distance = 4 * nPixel; in setDashStyle()
380 pLineDash.DashLen = 6 * nPixel; in setDashStyle()
381 pLineDash.Distance = 4 * nPixel; in setDashStyle()
385 pLineDash.DotLen = nPixel; in setDashStyle()
[all …]
/AOO41X/main/vcl/unx/generic/dtrans/
H A Dbmp.cxx184 unsigned long nPixel = XGetPixel( pImage, x, y ); in X11_getPaletteBmpFromImage() local
185 if( nPixel >= nColors ) in X11_getPaletteBmpFromImage()
186 nColors = nPixel+1; in X11_getPaletteBmpFromImage()
187 X11_writeScanlinePixel( nPixel, pScanline, pImage->depth, x ); in X11_getPaletteBmpFromImage()
209 for( unsigned long nPixel = 0; nPixel < nColors; nPixel++ ) in X11_getPaletteBmpFromImage() local
211 aColors[nPixel].flags = DoRed | DoGreen | DoBlue; in X11_getPaletteBmpFromImage()
212 aColors[nPixel].pixel = nPixel; in X11_getPaletteBmpFromImage()
307 unsigned long nPixel = XGetPixel( pImage, x, y ); in X11_getTCBmpFromImage() local
309 sal_uInt8 nValue = (sal_uInt8)doRightShift( nPixel&aVInfo.blue_mask, nBlueShift); in X11_getTCBmpFromImage()
314 nValue = (sal_uInt8)doRightShift( nPixel&aVInfo.green_mask, nGreenShift); in X11_getTCBmpFromImage()
[all …]
/AOO41X/main/vcl/aqua/source/gdi/
H A Dsalbmp.cxx288 virtual void SkipPixel( sal_uInt32 nPixel ) = 0;
297 virtual void SkipPixel( sal_uInt32 nPixel ) in SkipPixel() argument
299 pData += nPixel << 2; in SkipPixel()
320 virtual void SkipPixel( sal_uInt32 nPixel ) in SkipPixel() argument
322 pData += (nPixel << 1) + nPixel; in SkipPixel()
349 virtual void SkipPixel( sal_uInt32 nPixel ) in SkipPixel() argument
351 pData += nPixel; in SkipPixel()
377 virtual void SkipPixel( sal_uInt32 nPixel ) in SkipPixel() argument
379 pData += nPixel; in SkipPixel()
404 virtual void SkipPixel( sal_uInt32 nPixel ) in SkipPixel() argument
[all …]
H A Datslayout.cxx188 inline Fixed ATSLayout::Vcl2Fixed( int nPixel ) const in Vcl2Fixed()
190 return FloatToFixed( nPixel / mfFontScale ); in Vcl2Fixed()
/AOO41X/main/vcl/source/gdi/
H A Dgraph.cxx60 sal_uInt16 nPixel = (sal_uInt16) pOutDev->PixelToLogic( Size( 1, 1 ) ).Width(); in ImplDrawDefault() local
61 sal_uInt16 nPixelWidth = nPixel; in ImplDrawDefault()
76 aBorderRect.Left() += nPixel; in ImplDrawDefault()
77 aBorderRect.Top() += nPixel; in ImplDrawDefault()
82 aBorderRect.Left() -= nPixel; in ImplDrawDefault()
83 aBorderRect.Top() -= nPixel; in ImplDrawDefault()
84 aBorderRect.Right() -= nPixel; in ImplDrawDefault()
85 aBorderRect.Bottom() -= nPixel; in ImplDrawDefault()
91 aPoint.X() += nPixelWidth + 2*nPixel; in ImplDrawDefault()
92 aPoint.Y() += nPixelWidth + 2*nPixel; in ImplDrawDefault()
[all …]
/AOO41X/main/sfx2/source/dialog/
H A Dsplitwin.cxx61 #define nPixel 30L macro
1084 aPos.X() -= nPixel; in CursorIsOverRect()
1085 aPos.Y() -= nPixel; in CursorIsOverRect()
1086 aSize.Width() += 2 * nPixel; in CursorIsOverRect()
1087 aSize.Height() += 2 * nPixel; in CursorIsOverRect()
1098 aVisPos.X() -= nPixel; in CursorIsOverRect()
1099 aVisPos.Y() -= nPixel; in CursorIsOverRect()
1100 aVisSize.Width() += 2 * nPixel; in CursorIsOverRect()
1101 aVisSize.Height() += 2 * nPixel; in CursorIsOverRect()
/AOO41X/main/vcl/unx/generic/app/
H A Dsaldisp.cxx2924 SalColor SalVisual::GetTCColor( Pixel nPixel ) const in GetTCColor()
2927 return (SalColor)nPixel; in GetTCColor()
2930 return MAKE_SALCOLOR( (nPixel & 0x0000FF), in GetTCColor()
2931 (nPixel & 0x00FF00) >> 8, in GetTCColor()
2932 (nPixel & 0xFF0000) >> 16); in GetTCColor()
2934 Pixel r = nPixel & red_mask; in GetTCColor()
2935 Pixel g = nPixel & green_mask; in GetTCColor()
2936 Pixel b = nPixel & blue_mask; in GetTCColor()
3246 sal_uInt16 nPixel = 0; in sal_Lookup() local
3258 nPixel = i; in sal_Lookup()
[all …]
/AOO41X/main/canvas/source/vcl/
H A Dspritecanvashelper.cxx682 double nPixel(0.0); in renderMemUsage() local
686 makeAdder(nPixel,1.0), in renderMemUsage()
697 const double nMemUsage( nPixel * NUM_VIRDEV * BYTES_PER_PIXEL + in renderMemUsage()
/AOO41X/main/basebmp/test/
H A Dbasictest.cxx153 sal_Int32 nPixel(countPixel(pDevice, aCol2)); in testPixelFuncs() local
157 countPixel(pDevice, aCol2) == nPixel); in testPixelFuncs()
/AOO41X/main/sc/source/ui/view/
H A Dviewdata.cxx3117 sal_Int64 nPixel = ToPixel( nHeight, nPPTY); in AddPixelsWhile() local
3118 sal_Int64 nAdd = nPixel * nRows; in AddPixelsWhile()
3122 nRows -= static_cast<SCROW>(nDiff / nPixel); in AddPixelsWhile()
3123 nAdd = nPixel * nRows; in AddPixelsWhile()
3128 nAdd += nPixel; in AddPixelsWhile()
3158 sal_Int64 nPixel = ToPixel( nHeight, nPPTY); in AddPixelsWhileBackward() local
3159 sal_Int64 nAdd = nPixel * nRows; in AddPixelsWhileBackward()
3163 nRows -= static_cast<SCROW>(nDiff / nPixel); in AddPixelsWhileBackward()
3164 nAdd = nPixel * nRows; in AddPixelsWhileBackward()
3169 nAdd += nPixel; in AddPixelsWhileBackward()
H A Dviewfunc.cxx2464 long nPixel = pDoc->GetNeededSize( nCol, nRow, nTab, aProv.GetDevice(), in ModifyCellSize() local
2466 sal_uInt16 nTwips = (sal_uInt16)( nPixel / nPPTX ); in ModifyCellSize()
/AOO41X/main/sc/source/core/data/
H A Dtable1.cxx1492 long nPixel = pCell->GetTextWidth(); in MaybeAddExtraColumn() local
1495 if ( TEXTWIDTH_DIRTY == nPixel ) in MaybeAddExtraColumn()
1503 nPixel = aCol[rCol].GetNeededSize( in MaybeAddExtraColumn()
1505 pCell->SetTextWidth( (sal_uInt16)nPixel ); in MaybeAddExtraColumn()
1508 long nTwips = (long) (nPixel / nPPTX); in MaybeAddExtraColumn()
/AOO41X/main/svx/source/dialog/
H A Ddlgctrl.cxx978 void SvxPixelCtl::ChangePixel( sal_uInt16 nPixel ) in ChangePixel() argument
980 if( *( pPixel + nPixel) == 0 ) in ChangePixel()
981 *( pPixel + nPixel) = 1; // koennte erweitert werden auf mehrere Farben in ChangePixel()
983 *( pPixel + nPixel) = 0; in ChangePixel()
1253 sal_uInt16 SvxPixelCtl::GetBitmapPixel( const sal_uInt16 nPixel ) in GetBitmapPixel() argument
1255 return( *( pPixel + nPixel ) ); in GetBitmapPixel()
/AOO41X/main/vcl/inc/unx/
H A Dsaldisp.hxx151 SalColor GetTCColor( Pixel nPixel ) const;
200 SalColor GetColor( Pixel nPixel ) const;
/AOO41X/main/editeng/inc/editeng/
H A Deditview.hxx237 void SetInvalidateMore( sal_uInt16 nPixel );
H A Doutliner.hxx419 void SetInvalidateMore( sal_uInt16 nPixel );
/AOO41X/main/sw/source/filter/html/
H A Dswhtml.cxx4943 sal_uInt16 SwHTMLParser::ToTwips( sal_uInt16 nPixel ) const in ToTwips()
4945 if( nPixel && Application::GetDefaultDevice() ) in ToTwips()
4948 Size( nPixel, nPixel ), MapMode( MAP_TWIP ) ).Width(); in ToTwips()
4952 return nPixel; in ToTwips()
H A Dswhtml.hxx939 sal_uInt16 ToTwips( sal_uInt16 nPixel ) const;
/AOO41X/main/svx/inc/svx/
H A Ddlgctrl.hxx220 void ChangePixel( sal_uInt16 nPixel );
/AOO41X/main/editeng/source/editeng/
H A Dimpedit.hxx373 void SetInvalidateMore( sal_uInt16 nPixel ) { nInvMore = nPixel; } in SetInvalidateMore() argument
H A Deditview.cxx1434 void EditView::SetInvalidateMore( sal_uInt16 nPixel ) in SetInvalidateMore() argument
1437 pImpEditView->SetInvalidateMore( nPixel ); in SetInvalidateMore()
/AOO41X/main/editeng/source/outliner/
H A Doutlvw.cxx1801 void OutlinerView::SetInvalidateMore( sal_uInt16 nPixel ) in SetInvalidateMore() argument
1804 pEditView->SetInvalidateMore( nPixel ); in SetInvalidateMore()
/AOO41X/main/svtools/inc/svtools/
H A Dbrwbox.hxx517 void SetDataRowHeight( long nPixel );
/AOO41X/main/svtools/source/brwbox/
H A Dbrwbox1.cxx987 void BrowseBox::SetDataRowHeight( long nPixel ) in SetDataRowHeight() argument
991 nDataRowHeight = CalcReverseZoom(nPixel); in SetDataRowHeight()