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

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontPlatformData.cpp44 , m_syntheticBold(false)
73 , m_syntheticBold(false)
102 , m_syntheticBold(syntheticBold)
131 , m_syntheticBold(source.m_syntheticBold)
162 , m_syntheticBold(syntheticBold)
182 , m_syntheticBold(syntheticBold)
204 , m_syntheticBold(src.m_syntheticBold)
240 m_syntheticBold
[all...]
H A DFontPlatformData.h108 bool syntheticBold() const { return m_syntheticBold; }
118 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
182 bool m_syntheticBold; member in class:blink::FontPlatformData
H A DFontDescription.h81 , m_syntheticBold(false)
153 bool isSyntheticBold() const { return m_syntheticBold; }
187 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
243 unsigned m_syntheticBold : 1;
279 && m_syntheticBold == other.m_syntheticBold
H A DFontDescription.cpp161 static_cast<unsigned>(m_syntheticBold) << 6 | // bit 7
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontPlatformDataSkia.cpp44 h ^= 0x01010101 * ((static_cast<int>(m_isHashTableDeletedValue) << 3) | (static_cast<int>(m_orientation) << 2) | (static_cast<int>(m_syntheticBold) << 1) | static_cast<int>(m_syntheticItalic));
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
H A DFontPlatformDataWin.cpp52 paint->setFakeBoldText(m_syntheticBold);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
H A DFontPlatformDataLinux.cpp99 paint->setFakeBoldText(m_syntheticBold);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
H A DFontPlatformDataCocoa.mm39 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, static_cast<uintptr_t>(m_isHashTableDeletedValue << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticItalic) };
48 , m_syntheticBold(syntheticBold)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DFontMac.cpp62 paint->setFakeBoldText(platformData.m_syntheticBold);
H A 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 & NSBoldFontMask);
H A DFontCacheMac.mm150 if (platformData.m_syntheticBold)

Completed in 115 milliseconds