Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontPlatformData.cpp44 , m_syntheticBold(false) in FontPlatformData()
73 , m_syntheticBold(false) in FontPlatformData()
102 , m_syntheticBold(syntheticBold) in FontPlatformData()
131 , m_syntheticBold(source.m_syntheticBold) in FontPlatformData()
162 , m_syntheticBold(syntheticBold) in FontPlatformData()
182 , m_syntheticBold(syntheticBold) in FontPlatformData()
204 , m_syntheticBold(src.m_syntheticBold) in FontPlatformData()
240 m_syntheticBold = other.m_syntheticBold; in operator =()
287 && m_syntheticBold == a.m_syntheticBold in operator ==()
DFontDescription.h81 , m_syntheticBold(false) in FontDescription()
153 bool isSyntheticBold() const { return m_syntheticBold; } in isSyntheticBold()
187 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; } in setSyntheticBold()
243 unsigned m_syntheticBold : 1; variable
279 && m_syntheticBold == other.m_syntheticBold
DFontPlatformData.h108 bool syntheticBold() const { return m_syntheticBold; } in syntheticBold()
118 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; } in setSyntheticBold()
182 bool m_syntheticBold; variable
DFontDescription.cpp161 static_cast<unsigned>(m_syntheticBold) << 6 | // bit 7 in cacheKey()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
DFontPlatformDataSkia.cpp44 …) << 3) | (static_cast<int>(m_orientation) << 2) | (static_cast<int>(m_syntheticBold) << 1) | stat… in hash()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
DFontPlatformDataWin.cpp52 paint->setFakeBoldText(m_syntheticBold); in setupPaint()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
DFontPlatformDataLinux.cpp99 paint->setFakeBoldText(m_syntheticBold); in setupPaint()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DFontMac.cpp62 paint->setFakeBoldText(platformData.m_syntheticBold); in setupPaint()
DSimpleFontDataMac.mm149 m_syntheticBoldOffset = m_platformData.m_syntheticBold ? 1.0f : 0.f;
333 if (m_platformData.m_syntheticBold)
339 …scaledFontData.m_syntheticBold = (fontTraits & NSBoldFontMask) && !(scaledFontTraits & NSBoldFontM…
DFontCacheMac.mm150 if (platformData.m_syntheticBold)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
DFontPlatformDataCocoa.mm39 …ast<uintptr_t>(m_isHashTableDeletedValue << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_synt…
48 , m_syntheticBold(syntheticBold)