HomeSort by relevance Sort by last modified time
    Searched defs:scaledSize (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 119 float scaledSize = scaleFactor * fontDescription.computedSize();
120 winFont.lfHeight = -lroundf(scaledSize);
122 return new SimpleFontData(FontPlatformData(hfont, scaledSize), isCustomFont(), false);
SimpleFontDataLinux.cpp 160 const float scaledSize = lroundf(fontDescription.computedSize() * scaleFactor);
161 return new SimpleFontData(FontPlatformData(m_platformData, scaledSize), isCustomFont(), false);
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 113 float scaledSize = scaleFactor * m_platformData.size();
116 scaledFont.setSize(scaledSize);
122 winfont.lfHeight = -lroundf(scaledSize * (m_platformData.useGDI() ? 1 : 32));
124 return new SimpleFontData(FontPlatformData(hfont, scaledSize, m_platformData.syntheticBold(), m_platformData.syntheticOblique(), m_platformData.useGDI()), isCustomFont(), false);
  /packages/apps/Phone/src/com/android/phone/
BitmapUtils.java 72 final int scaledSize = 128;
74 scaledSize, scaledSize,
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 1251 milliseconds