Home
last modified time | relevance | path

Searched refs:syntheticBold (Results 1 – 22 of 22) sorted by relevance

/external/webkit/Source/WebCore/css/
DCSSFontFaceSource.cpp101 …tFaceSource::getFontData(const FontDescription& fontDescription, bool syntheticBold, bool syntheti… in getFontData() argument
120 …ght ? 8 : 0) | (fontDescription.orientation() == Vertical ? 4 : 0) | (syntheticBold ? 2 : 0) | (sy… in getFontData()
158 …w SVGFontData(fontFaceElement)), fontDescription.computedPixelSize(), syntheticBold, syntheticItal… in getFontData()
167 …font->platformDataFromCustomData(fontDescription.computedPixelSize(), syntheticBold, syntheticItal… in getFontData()
174 …ta(m_svgFontFaceElement.get())), fontDescription.computedPixelSize(), syntheticBold, syntheticItal… in getFontData()
DCSSFontFace.cpp101 SimpleFontData* CSSFontFace::getFontData(const FontDescription& fontDescription, bool syntheticBold in getFontData() argument
112 …if (SimpleFontData* result = m_sources[i]->getFontData(fontDescription, syntheticBold, syntheticIt… in getFontData()
DCSSSegmentedFontFace.cpp105 …bool syntheticBold = !(traitsMask & (FontWeight600Mask | FontWeight700Mask | FontWeight800Mask | F… in getFontData() local
107 …FontData* faceFontData = m_fontFaces[i]->getFontData(fontDescription, syntheticBold, syntheticItal… in getFontData()
DCSSFontFaceSource.h61 …SimpleFontData* getFontData(const FontDescription&, bool syntheticBold, bool syntheticItalic, CSSF…
DCSSFontFace.h68 SimpleFontData* getFontData(const FontDescription&, bool syntheticBold, bool syntheticItalic);
/external/webkit/Source/WebCore/platform/graphics/
DFontPlatformData.h158 …FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientatio…
160 : m_syntheticBold(syntheticBold) in m_syntheticBold() argument
182 …FontPlatformData(NSFont*, float size, bool syntheticBold = false, bool syntheticOblique = false, F…
185 …FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrie… in FontPlatformData() argument
187 : m_syntheticBold(syntheticBold) in FontPlatformData()
201 FontPlatformData(HFONT, float size, bool syntheticBold, bool syntheticOblique, bool useGDI);
203 …FontPlatformData(HFONT, CGFontRef, float size, bool syntheticBold, bool syntheticOblique, bool use…
239 bool syntheticBold() const { return m_syntheticBold; } in syntheticBold() function
DSimpleFontData.cpp67 SimpleFontData::SimpleFontData(PassOwnPtr<SVGFontData> svgFontData, int size, bool syntheticBold, b… in SimpleFontData() argument
68 : m_platformData(FontPlatformData(size, syntheticBold, syntheticItalic)) in SimpleFontData()
DSimpleFontData.h76 SimpleFontData(PassOwnPtr<SVGFontData>, int size, bool syntheticBold, bool syntheticItalic);
/external/webkit/Source/WebCore/platform/graphics/freetype/
DSimpleFontDataFreeType.cpp75 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f; in platformInit()
92 …scaleFactor * fontDescription.computedSize(), m_platformData.syntheticBold(), m_platformData.synth… in scaledFontData()
DFontPlatformData.h69 bool syntheticBold() const { return m_syntheticBold; } in syntheticBold() function
/external/webkit/Source/WebCore/platform/graphics/pango/
DFontPlatformData.h67 bool syntheticBold() const { return m_syntheticBold; } in syntheticBold() function
DSimpleFontDataPango.cpp73 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f; in platformInit()
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
DFontPlatformData.h59 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique);
/external/webkit/Source/WebCore/platform/graphics/win/
DSimpleFontDataCairoWin.cpp50 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f; in platformInit()
DSimpleFontDataCGWin.cpp54 m_syntheticBoldOffset = m_platformData.syntheticBold() ? 1.0f : 0.f; in platformInit()
DSimpleFontDataWin.cpp124 …return new SimpleFontData(FontPlatformData(hfont, scaledSize, m_platformData.syntheticBold(), m_pl… in scaledFontData()
/external/webkit/Source/WebCore/platform/graphics/cocoa/
DFontPlatformDataCocoa.mm48 FontPlatformData::FontPlatformData(NSFont *nsFont, float size, bool syntheticBold, bool syntheticOb…
50 : m_syntheticBold(syntheticBold)
/external/webkit/Source/WebCore/platform/graphics/mac/
DFontCacheMac.mm211 bool syntheticBold = isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(actualWeight);
214 …return new FontPlatformData(platformFont, size, syntheticBold, syntheticOblique, fontDescription.o…
/external/webkit/Source/WebCore/platform/mac/
DWebFontCache.mm269 bool syntheticBold = desiredWeight >= 7 && actualWeight < 7;
279 if (syntheticBold)
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0653970 (WebCore::FontPlatformData::syntheticBold):
53987 (WebCore::FontPlatformData::syntheticBold):
54000 (WebCore::FontPlatformData::syntheticBold):
67659 (WebCore::FontPlatformData::syntheticBold):
DChangeLog37439 (WebCore::FontPlatformData::syntheticBold):
DChangeLog-2009-06-164963 * platform/graphics/gtk/FontPlatformData.h: Added syntheticBold