Searched defs:syntheticBold (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSFontFace.cpp101 SimpleFontData* CSSFontFace::getFontData(const FontDescription& fontDescription, bool syntheticBold, bool syntheticItalic) argument
112 if (SimpleFontData* result = m_sources[i]->getFontData(fontDescription, syntheticBold, syntheticItalic, fontSelector)) {
H A DCSSFontFaceSource.cpp101 SimpleFontData* CSSFontFaceSource::getFontData(const FontDescription& fontDescription, bool syntheticBold, bool syntheticItalic, CSSFontSelector* fontSelector) argument
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));
H A DCSSSegmentedFontFace.cpp105 bool syntheticBold = !(traitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | FontWeight900Mask)) && (desiredTraitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | FontWeight900Mask)); local
107 if (const SimpleFontData* faceFontData = m_fontFaces[i]->getFontData(fontDescription, syntheticBold, syntheticItalic)) {
/external/webkit/Source/WebCore/platform/graphics/freetype/
H A DFontPlatformData.h69 bool syntheticBold() const { return m_syntheticBold; } function in class:WebCore::FontPlatformData
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DFontPlatformData.h67 bool syntheticBold() const { return m_syntheticBold; } function in class:WebCore::FontPlatformData
/external/webkit/Source/WebCore/platform/graphics/
H A DFontPlatformData.h158 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation = Horizontal, argument
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, argument
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; } function in class:WebCore::FontPlatformData
H A DSimpleFontData.cpp67 SimpleFontData::SimpleFontData(PassOwnPtr<SVGFontData> svgFontData, int size, bool syntheticBold, bool syntheticItalic) argument
68 : m_platformData(FontPlatformData(size, syntheticBold, syntheticItalic))

Completed in 1962 milliseconds