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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontPlatformData.cpp 38 : m_syntheticBold(false)
52 : m_syntheticBold(false)
66 : m_syntheticBold(syntheticBold)
81 : m_syntheticBold(syntheticBold)
95 : m_syntheticBold(source.m_syntheticBold)
112 m_syntheticBold = other.m_syntheticBold;
FontPlatformData.h 115 bool syntheticBold() const { return m_syntheticBold; }
133 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, static_cast<uintptr_t>(m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique) };
144 && m_syntheticBold == other.m_syntheticBold
179 bool m_syntheticBold;
FontDescription.h 80 , m_syntheticBold(false)
116 bool isSyntheticBold() const { return m_syntheticBold; }
154 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
210 unsigned m_syntheticBold : 1;
246 && m_syntheticBold == other.m_syntheticBold
FontDescription.cpp 138 static_cast<unsigned>(m_syntheticBold) << 6 | // bit 7
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontPlatformDataHarfBuzz.cpp 42 , m_syntheticBold(false)
56 , m_syntheticBold(false)
70 , m_syntheticBold(syntheticBold)
88 , m_syntheticBold(src.m_syntheticBold)
108 , m_syntheticBold(syntheticBold)
127 , m_syntheticBold(src.m_syntheticBold)
152 m_syntheticBold = src.m_syntheticBold;
    [all...]
FontPlatformDataHarfBuzz.h 80 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
127 bool m_syntheticBold;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontPlatformDataSkia.cpp 44 h ^= 0x01010101 * ((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/
FontPlatformDataLinuxHarfBuzz.cpp 95 paint->setFakeBoldText(m_syntheticBold);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 42 : m_syntheticBold(syntheticBold)
327 + (m_syntheticBold ? " synthetic bold" : "") + (m_syntheticOblique ? " synthetic oblique" : "") + (m_orientation ? " vertical orientation" : "");
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontMac.cpp 67 paint->setFakeBoldText(platformData.m_syntheticBold);
SimpleFontDataMac.mm 151 m_syntheticBoldOffset = m_platformData.m_syntheticBold ? 1.0f : 0.f;
335 if (m_platformData.m_syntheticBold)
341 scaledFontData.m_syntheticBold = (fontTraits & NSBoldFontMask) && !(scaledFontTraits & NSBoldFontMask);
FontCacheMac.mm 149 if (platformData.m_syntheticBold)

Completed in 74 milliseconds