HomeSort by relevance Sort by last modified time
    Searched refs:m_syntheticBold (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontPlatformData.cpp 44 , 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 = other.m_syntheticBold
    [all...]
FontDescription.h 81 , 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
FontPlatformData.h 108 bool syntheticBold() const { return m_syntheticBold; }
118 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
182 bool m_syntheticBold;
FontDescription.cpp 161 static_cast<unsigned>(m_syntheticBold) << 6 | // bit 7
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontPlatformDataSkia.cpp 44 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/
FontPlatformDataWin.cpp 52 paint->setFakeBoldText(m_syntheticBold);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
FontPlatformDataLinux.cpp 99 paint->setFakeBoldText(m_syntheticBold);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 39 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/
FontMac.cpp 62 paint->setFakeBoldText(platformData.m_syntheticBold);
SimpleFontDataMac.mm 149 m_syntheticBoldOffset = m_platformData.m_syntheticBold ? 1.0f : 0.f;
333 if (m_platformData.m_syntheticBold)
339 scaledFontData.m_syntheticBold = (fontTraits & NSBoldFontMask) && !(scaledFontTraits & NSBoldFontMask);
FontCacheMac.mm 150 if (platformData.m_syntheticBold)

Completed in 913 milliseconds