Searched refs:syntheticBold (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/ |
D | FontCustomPlatformDataSkia.cpp | 64 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/ |
D | FontPlatformData.cpp | 71 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()
|
D | FontPlatformData.h | 88 …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
|
D | SimpleFontData.h | 66 …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…
|
D | SimpleFontData.cpp | 66 …eFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheti… in SimpleFontData() argument 67 : m_platformData(FontPlatformData(fontSize, syntheticBold, syntheticItalic)) in SimpleFontData()
|
D | FontDescription.h | 172 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; } in setSyntheticBold() argument
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/ |
D | FontCacheMac.mm | 211 …bool syntheticBold = (isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(actualWeight)) || … 216 …ontPlatformData(platformFont, size, fontDescription.usePrinterFont(), syntheticBold, syntheticObli…
|
D | SimpleFontDataMac.mm | 126 bool syntheticBold = platformData().syntheticBold() && !(traits & kCTFontBoldTrait); 129 …tePlatform(substituteFont, platformData().size(), isUsingPrinterFont, syntheticBold, syntheticObli…
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/ |
D | FontPlatformDataCocoa.mm | 40 …FontPlatformData(NSFont *nsFont, float size, bool isPrinterFont, bool syntheticBold, bool syntheti… 41 : m_syntheticBold(syntheticBold)
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
D | WebFontCache.mm | 191 bool syntheticBold = desiredWeight >= 7 && actualWeight < 7; 201 if (syntheticBold)
|