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

  /external/webkit/WebCore/platform/graphics/mac/
FontPlatformData.h 55 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique)
56 : m_syntheticBold(syntheticBold)
67 FontPlatformData(NSFont *nsFont, bool syntheticBold = false, bool syntheticOblique = false);
69 FontPlatformData(CGFontRef cgFont, ATSUFontID fontID, float size, bool syntheticBold, bool syntheticOblique)
70 : m_syntheticBold(syntheticBold)
87 bool syntheticBold() const { return m_syntheticBold; }
FontPlatformDataMac.mm 32 FontPlatformData::FontPlatformData(NSFont *nsFont, bool syntheticBold, bool syntheticOblique)
33 : m_syntheticBold(syntheticBold)
FontCacheMac.mm 210 bool syntheticBold = isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(actualWeight);
213 return new FontPlatformData(platformFont, syntheticBold, syntheticOblique);
  /external/webkit/WebCore/css/
CSSFontFaceSource.cpp 99 SimpleFontData* CSSFontFaceSource::getFontData(const FontDescription& fontDescription, bool syntheticBold, bool syntheticItalic, CSSFontSelector* fontSelector)
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));
CSSFontFace.cpp 101 SimpleFontData* CSSFontFace::getFontData(const FontDescription& fontDescription, bool syntheticBold, bool syntheticItalic)
112 if (SimpleFontData* result = m_sources[i]->getFontData(fontDescription, syntheticBold, syntheticItalic, fontSelector)) {
CSSFontFaceSource.h 60 SimpleFontData* getFontData(const FontDescription&, bool syntheticBold, bool syntheticItalic, CSSFontSelector*);
CSSSegmentedFontFace.cpp 111 bool syntheticBold = !(traitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | FontWeight900Mask)) && (desiredTraitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | FontWeight900Mask));
113 if (const FontData* faceFontData = m_fontFaces[i]->getFontData(fontDescription, syntheticBold, syntheticItalic)) {
CSSFontFace.h 65 SimpleFontData* getFontData(const FontDescription&, bool syntheticBold, bool syntheticItalic);
  /external/webkit/WebCore/platform/graphics/android/
FontPlatformData.h 54 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique);
  /external/webkit/WebCore/platform/graphics/gtk/
FontPlatformData.h 87 bool syntheticBold() const { return m_syntheticBold; }
SimpleFontDataGtk.cpp 66 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
SimpleFontDataPango.cpp 67 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
  /external/webkit/WebCore/platform/graphics/win/
SimpleFontDataCairoWin.cpp 51 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
FontPlatformData.h 87 bool syntheticBold() const { return m_syntheticBold; }
SimpleFontDataCGWin.cpp 55 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
SimpleFontDataWin.cpp 118 m_smallCapsFontData = new SimpleFontData(FontPlatformData(hfont, smallCapsHeight, m_platformData.syntheticBold(), m_platformData.syntheticOblique(), m_platformData.useGDI()));
  /external/webkit/WebCore/platform/mac/
WebFontCache.mm 269 bool syntheticBold = desiredWeight >= 7 && actualWeight < 7;
279 if (syntheticBold)

Completed in 77 milliseconds