Home
last modified time | relevance | path

Searched refs:m_syntheticBold (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontPlatformData.cpp38 : m_syntheticBold(false) in FontPlatformData()
55 : m_syntheticBold(false) in FontPlatformData()
72 : m_syntheticBold(syntheticBold) in FontPlatformData()
90 : m_syntheticBold(syntheticBold) in FontPlatformData()
105 : m_syntheticBold(source.m_syntheticBold) in FontPlatformData()
125 m_syntheticBold = other.m_syntheticBold; in operator =()
DFontPlatformData.h115 bool syntheticBold() const { return m_syntheticBold; } in syntheticBold()
135 …, static_cast<uintptr_t>(m_isPrinterFont << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_synt… in hash()
146 && m_syntheticBold == other.m_syntheticBold
184 bool m_syntheticBold;
DFontDescription.h98 , m_syntheticBold(false) in FontDescription()
130 bool isSyntheticBold() const { return m_syntheticBold; } in isSyntheticBold()
172 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; } in setSyntheticBold()
215 unsigned m_syntheticBold : 1; variable
245 && m_syntheticBold == other.m_syntheticBold
DFontDescription.cpp167 static_cast<unsigned>(m_syntheticBold) << 7 | // bit 8 in cacheKey()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DFontMac.cpp69 paint->setFakeBoldText(platformData.m_syntheticBold); in setupPaint()
DSimpleFontDataMac.mm142 m_syntheticBoldOffset = m_platformData.m_syntheticBold ? 1.0f : 0.f;
322 if (m_platformData.m_syntheticBold)
328 …scaledFontData.m_syntheticBold = (fontTraits & NSBoldFontMask) && !(scaledFontTraits & NSBoldFontM…
DFontCacheMac.mm139 if (platformData.m_syntheticBold)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
DFontPlatformDataCocoa.mm41 : m_syntheticBold(syntheticBold)
317 …+ (m_syntheticBold ? " synthetic bold" : "") + (m_syntheticOblique ? " synthetic oblique" : "") + …