Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/modules/speech/
DSpeechGrammar.h47 double weight() const { return m_weight; } in weight()
48 void setWeight(double weight) { m_weight = weight; } in setWeight()
55 double m_weight; variable
DSpeechGrammar.cpp51 : m_weight(1.0) in SpeechGrammar()
58 , m_weight(weight) in SpeechGrammar()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontDescription.h86 , m_weight(FontWeightNormal) in FontDescription()
115 FontWeight weight() const { return static_cast<FontWeight>(m_weight); } in weight()
153 void setWeight(FontWeight w) { m_weight = w; } in setWeight()
197 unsigned m_weight : 8; // FontWeight variable
230 && m_weight == other.m_weight
DFontDescription.cpp54 switch (m_weight) { in lighterWeight()
76 switch (m_weight) { in bolderWeight()
100 | (FontWeight100Mask << (m_weight - FontWeight100))); in traitsMask()
/external/chromium_org/third_party/WebKit/Source/core/css/
DFontFace.cpp192 return m_weight ? m_weight->cssText() : "normal"; in weight()
264 m_weight = value; in setPropertyValue()
409 if (m_weight) { in traitsMask()
410 if (!m_weight->isPrimitiveValue()) in traitsMask()
413 switch (toCSSPrimitiveValue(m_weight.get())->getValueID()) { in traitsMask()
DFontFace.h101 RefPtr<CSSValue> m_weight; variable