Home
last modified time | relevance | path

Searched refs:m_weight (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
DFontDescription.h67 , m_weight(FontWeightNormal) in FontDescription()
89 FontWeight weight() const { return static_cast<FontWeight>(m_weight); } in weight()
113 void setWeight(FontWeight w) { m_weight = w; } in setWeight()
145 unsigned m_weight : 8; // FontWeight variable
168 && m_weight == other.m_weight
DFontDescription.cpp39 switch (m_weight) { in lighterWeight()
69 switch (m_weight) { in bolderWeight()
97 | (FontWeight100Mask << (m_weight - FontWeight100))); in traitsMask()
DFontCache.cpp63 , m_weight(weight) in FontPlatformDataCacheKey()
80m_weight == other.m_weight && m_italic == other.m_italic && m_printerFont == other.m_printerFont && in operator ==()
85 unsigned m_weight; member
103 fontKey.m_weight, in computeHash()
/external/webkit/Source/WebCore/platform/graphics/wince/
DFontPlatformData.cpp105 unsigned m_weight; member in WebCore::FixedSizeFontData
112 , m_weight(0) in FixedSizeFontData()
123 , m_weight(weight) in FixedSizeFontDataKey()
128 FixedSizeFontDataKey(WTF::HashTableDeletedValueType) : m_weight(-2) { } in FixedSizeFontDataKey()
129 bool isHashTableDeletedValue() const { return m_weight == -2; } in isHashTableDeletedValue()
134 && m_weight == other.m_weight in operator ==()
139 unsigned m_weight; member
148 font.m_weight, in hash()
242 fontData->m_weight = weight; in create()
370 …FixedSizeFontDataKey key(m_private->m_family, m_private->m_rootFontData->m_weight, m_private->m_ro… in create()