HomeSort by relevance Sort by last modified time
    Searched refs:computedPixelSize (Results 1 - 15 of 15) sorted by null

  /external/webkit/WebCore/css/
CSSFontFaceSource.cpp 117 unsigned hashKey = fontDescription.computedPixelSize() << 2 | (syntheticBold ? 2 : 0) | (syntheticItalic ? 1 : 0);
156 fontData.set(new SimpleFontData(m_font->platformDataFromCustomData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic, fontDescription.renderingMode()), true, false, svgFontData));
165 fontData.set(new SimpleFontData(m_font->platformDataFromCustomData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic, fontDescription.renderingMode()), true, false));
172 fontData.set(new SimpleFontData(FontPlatformData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic), true, false, svgFontData));
CSSSegmentedFontFace.cpp 100 unsigned hashKey = fontDescription.computedPixelSize() << FontTraitsMaskWidth | desiredTraitsMask;
CSSComputedStyleDeclaration.cpp 562 return CSSPrimitiveValue::create(style->fontDescription().computedPixelSize(), CSSPrimitiveValue::CSS_PX);
    [all...]
  /external/webkit/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 84 m_font = new FontHolder(new wxFont( wxSize(0, -desc.computedPixelSize()),
93 m_font = new FontHolder(new wxFont( desc.computedPixelSize(),
  /external/webkit/WebCore/platform/graphics/gtk/
FontCacheGtk.cpp 50 FontPlatformData alternateFont(fontFace, font.fontDescription().computedPixelSize(), false, false);
FontPlatformDataGtk.cpp 42 , m_size(fontDescription.computedPixelSize())
54 double fcsize = fontDescription.computedPixelSize();
109 cairo_matrix_init_scale(&fontMatrix, fontDescription.computedPixelSize(), fontDescription.computedPixelSize());
  /external/webkit/WebCore/platform/graphics/
FontDescription.h 79 int computedPixelSize() const { return int(m_computedSize + 0.5f); }
Font.h 77 int pixelSize() const { return fontDescription().computedPixelSize(); }
FontCache.cpp 193 FontPlatformDataCacheKey key(familyName, fontDescription.computedPixelSize(), fontDescription.weight(), fontDescription.italic(),
  /external/webkit/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 455 winfont->lfHeight = -fontDescription.computedPixelSize();
549 fontDescription.computedPixelSize());
  /external/webkit/WebCore/platform/graphics/mac/
FontCacheMac.mm 197 float size = fontDescription.computedPixelSize();
  /external/webkit/WebCore/platform/graphics/win/
FontCacheWin.cpp 527 fontDescription.computedPixelSize() * (useGDI ? 1 : 32), useGDI && canCreateCGFontWithLOGFONT);
541 FontPlatformData* result = new FontPlatformData(hfont, fontDescription.computedPixelSize(), synthesizeBold, synthesizeItalic, useGDI);
  /external/webkit/WebCore/platform/graphics/wince/
FontPlatformData.cpp 332 , m_size(fontDescription.computedPixelSize())
  /external/webkit/WebCore/editing/
TextIterator.cpp 705 int fontSize = style->fontDescription().computedPixelSize();
    [all...]
  /external/webkit/WebCore/rendering/
RenderBlock.cpp     [all...]

Completed in 770 milliseconds