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

  /external/webkit/Source/WebCore/css/
CSSFontFaceSource.cpp 101 SimpleFontData* CSSFontFaceSource::getFontData(const FontDescription& fontDescription, bool syntheticBold, bool syntheticItalic, CSSFontSelector* fontSelector)
120 | (fontDescription.textOrientation() == TextOrientationUpright ? 8 : 0) | (fontDescription.orientation() == Vertical ? 4 : 0) | (syntheticBold ? 2 : 0) | (syntheticItalic ? 1 : 0);
158 fontData.set(new SimpleFontData(adoptPtr(new SVGFontData(fontFaceElement)), fontDescription.computedPixelSize(), syntheticBold, syntheticItalic));
167 fontData.set(new SimpleFontData(m_font->platformDataFromCustomData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic, fontDescription.orientation(),
174 fontData.set(new SimpleFontData(adoptPtr(new SVGFontData(m_svgFontFaceElement.get())), fontDescription.computedPixelSize(), syntheticBold, syntheticItalic));
CSSFontFaceSource.h 61 SimpleFontData* getFontData(const FontDescription&, bool syntheticBold, bool syntheticItalic, CSSFontSelector*);
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)) {
CSSSegmentedFontFace.cpp 105 bool syntheticBold = !(traitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | FontWeight900Mask)) && (desiredTraitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | FontWeight900Mask));
107 if (const SimpleFontData* faceFontData = m_fontFaces[i]->getFontData(fontDescription, syntheticBold, syntheticItalic)) {
CSSFontFace.h 68 SimpleFontData* getFontData(const FontDescription&, bool syntheticBold, bool syntheticItalic);
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h 158 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation = Horizontal,
160 : m_syntheticBold(syntheticBold)
182 FontPlatformData(NSFont*, float size, bool syntheticBold = false, bool syntheticOblique = false, FontOrientation = Horizontal,
185 FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation,
187 : m_syntheticBold(syntheticBold)
201 FontPlatformData(HFONT, float size, bool syntheticBold, bool syntheticOblique, bool useGDI);
203 FontPlatformData(HFONT, CGFontRef, float size, bool syntheticBold, bool syntheticOblique, bool useGDI);
239 bool syntheticBold() const { return m_syntheticBold; }
SimpleFontData.cpp 67 SimpleFontData::SimpleFontData(PassOwnPtr<SVGFontData> svgFontData, int size, bool syntheticBold, bool syntheticItalic)
68 : m_platformData(FontPlatformData(size, syntheticBold, syntheticItalic))
SimpleFontData.h 76 SimpleFontData(PassOwnPtr<SVGFontData>, int size, bool syntheticBold, bool syntheticItalic);
  /external/webkit/Source/WebCore/platform/graphics/freetype/
SimpleFontDataFreeType.cpp 75 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
92 scaleFactor * fontDescription.computedSize(), m_platformData.syntheticBold(), m_platformData.syntheticOblique()),
FontPlatformData.h 69 bool syntheticBold() const { return m_syntheticBold; }
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontPlatformData.h 60 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique);
  /external/webkit/Source/WebCore/platform/graphics/pango/
FontPlatformData.h 67 bool syntheticBold() const { return m_syntheticBold; }
SimpleFontDataPango.cpp 73 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
  /external/webkit/Source/WebCore/platform/graphics/cocoa/
FontPlatformDataCocoa.mm 48 FontPlatformData::FontPlatformData(NSFont *nsFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation,
50 : m_syntheticBold(syntheticBold)
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontCacheMac.mm 211 bool syntheticBold = isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(actualWeight);
214 return new FontPlatformData(platformFont, size, syntheticBold, syntheticOblique, fontDescription.orientation(), fontDescription.textOrientation(), fontDescription.widthVariant());
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCairoWin.cpp 50 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
SimpleFontDataCGWin.cpp 54 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f;
SimpleFontDataWin.cpp 124 return new SimpleFontData(FontPlatformData(hfont, scaledSize, m_platformData.syntheticBold(), m_platformData.syntheticOblique(), m_platformData.useGDI()), isCustomFont(), false);
  /external/webkit/Source/WebCore/platform/mac/
WebFontCache.mm 269 bool syntheticBold = desiredWeight >= 7 && actualWeight < 7;
279 if (syntheticBold)

Completed in 368 milliseconds