Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
DFontCustomPlatformDataSkia.cpp64 bool syntheticBold = bold && !m_typeface->isBold(); in fontPlatformData() local
66 if (syntheticBold || syntheticItalic) { in fontPlatformData()
71 if (syntheticBold) in fontPlatformData()
77 syntheticBold = false; in fontPlatformData()
79 …return FontPlatformData(typeface.release(), "", size, syntheticBold, syntheticItalic, orientation); in fontPlatformData()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontPlatformData.cpp71 FontPlatformData::FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrien… in FontPlatformData() argument
72 : m_syntheticBold(syntheticBold) in FontPlatformData()
89 FontPlatformData::FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool synthetic… in FontPlatformData() argument
90 : m_syntheticBold(syntheticBold) in FontPlatformData()
DFontPlatformData.h88 …FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation = Horizont…
91 …FontPlatformData(NSFont*, float size, bool isPrinterFont = false, bool syntheticBold = false, bool…
93 …FontPlatformData(CGFontRef, float size, bool syntheticBold, bool syntheticOblique, FontOrientation…
115 bool syntheticBold() const { return m_syntheticBold; } in syntheticBold() function
DSimpleFontData.h66 …a> create(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheti… in create() argument
68 return adoptRef(new SimpleFontData(customData, fontSize, syntheticBold, syntheticItalic)); in create()
182 …SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syn…
DSimpleFontData.cpp66 …eFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheti… in SimpleFontData() argument
67 : m_platformData(FontPlatformData(fontSize, syntheticBold, syntheticItalic)) in SimpleFontData()
DFontDescription.h172 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; } in setSyntheticBold() argument
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DFontCacheMac.mm211 …bool syntheticBold = (isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(actualWeight)) || …
216 …ontPlatformData(platformFont, size, fontDescription.usePrinterFont(), syntheticBold, syntheticObli…
DSimpleFontDataMac.mm126 bool syntheticBold = platformData().syntheticBold() && !(traits & kCTFontBoldTrait);
129 …tePlatform(substituteFont, platformData().size(), isUsingPrinterFont, syntheticBold, syntheticObli…
/external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
DFontPlatformDataCocoa.mm40 …FontPlatformData(NSFont *nsFont, float size, bool isPrinterFont, bool syntheticBold, bool syntheti…
41 : m_syntheticBold(syntheticBold)
/external/chromium_org/third_party/WebKit/Source/platform/mac/
DWebFontCache.mm191 bool syntheticBold = desiredWeight >= 7 && actualWeight < 7;
201 if (syntheticBold)