Lines Matching refs:aSize

629                     Size aSize = pOutDev->ImplLogicToDevicePixel( aFont.GetSize() );  in GetDefaultFont()  local
630 if ( !aSize.Height() ) in GetDefaultFont()
634 aSize.Height() = 1; in GetDefaultFont()
636 aSize.Height() = (12*pOutDev->mnDPIY)/72; in GetDefaultFont()
640 if( (0 == aSize.Width()) && (0 != aFont.GetSize().Width()) ) in GetDefaultFont()
641 aSize.Width() = 1; in GetDefaultFont()
644 float fExactHeight = static_cast<float>(aSize.Height()); in GetDefaultFont()
645 … pEntry = pOutDev->mpFontCache->GetFontEntry( pOutDev->mpFontList, aFont, aSize, fExactHeight, pOu… in GetDefaultFont()
3010 Size aSize = ImplLogicToDevicePixel( maFont.GetSize() ); in ImplNewFont() local
3011 if ( !aSize.Height() ) in ImplNewFont()
3015 aSize.Height() = 1; in ImplNewFont()
3017 aSize.Height() = (12*mnDPIY)/72; in ImplNewFont()
3018 fExactHeight = static_cast<float>(aSize.Height()); in ImplNewFont()
3022 if( (0 == aSize.Width()) && (0 != maFont.GetSize().Width()) ) in ImplNewFont()
3023 aSize.Width() = 1; in ImplNewFont()
3030 …mpFontEntry = mpFontCache->GetFontEntry( mpFontList, maFont, aSize, fExactHeight, pDevSpecificSubs… in ImplNewFont()
3129 if( mbMap && !aSize.Width() ) in ImplNewFont()
3138 const_cast<Font&>(maFont).SetSize( Size( nNewWidth, aSize.Height() ) ); in ImplNewFont()
7257 Size aSize( 0, mpGetDevSizeList->Get( nSizeIndex ) ); in GetDevFontSize() local
7260 aSize.Height() *= 10; in GetDevFontSize()
7262 aSize = PixelToLogic( aSize, aMap ); in GetDevFontSize()
7263 aSize.Height() += 5; in GetDevFontSize()
7264 aSize.Height() /= 10; in GetDevFontSize()
7265 long nRound = aSize.Height() % 5; in GetDevFontSize()
7267 aSize.Height() += (5-nRound); in GetDevFontSize()
7269 aSize.Height() -= nRound; in GetDevFontSize()
7270 aSize.Height() *= 10; in GetDevFontSize()
7271 aSize = LogicToPixel( aSize, aMap ); in GetDevFontSize()
7272 aSize = PixelToLogic( aSize ); in GetDevFontSize()
7273 aSize.Height() += 5; in GetDevFontSize()
7274 aSize.Height() /= 10; in GetDevFontSize()
7276 return aSize; in GetDevFontSize()
7682 Size aSize( nRight - nLeft + 1, nBottom - nTop + 1 ); in GetTextBoundRect() local
7688 aSize = PixelToLogic( aSize ); in GetTextBoundRect()
7691 rRect = Rectangle( aTopLeft, aSize ); in GetTextBoundRect()
7867 Size aSize(nCharWidth + 2 * aOffset.X(), nHeight + 2 * aOffset.Y()); in GetTextOutlines() local
7868 bSuccess = (bool)aVDev.SetOutputSizePixel(aSize); in GetTextOutlines()
7879 Bitmap aBmp( aVDev.GetBitmap(Point(0, 0), aSize)); in GetTextOutlines()