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.h48 double weight() const { return m_weight; } in weight()
49 void setWeight(double weight) { m_weight = weight; } in setWeight()
58 double m_weight; variable
DSpeechGrammar.cpp51 : m_weight(1.0) in SpeechGrammar()
57 , m_weight(weight) in SpeechGrammar()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontTraits.h79 m_traits.m_weight = weight; in FontTraits()
92 FontWeight weight() const { return static_cast<FontWeight>(m_traits.m_weight); } in weight()
100 unsigned m_weight : 4; member
DFontDescription.h69 , m_weight(FontWeightNormal) in FontDescription()
127 FontWeight weight() const { return static_cast<FontWeight>(m_weight); } in weight()
175 void setWeight(FontWeight w) { m_weight = w; } in setWeight()
225 unsigned m_weight : 4; // FontWeight variable
264 && m_weight == other.m_weight
/external/chromium_org/third_party/WebKit/Source/core/css/
DFontFace.cpp160 return m_weight ? m_weight->cssText() : "normal"; in weight()
238 m_weight = value; in setPropertyValue()
408 if (m_weight) { in traits()
409 if (!m_weight->isPrimitiveValue()) in traits()
412 switch (toCSSPrimitiveValue(m_weight.get())->getValueID()) { in traits()
580 visitor->trace(m_weight); in trace()
DFontFace.h132 RefPtrWillBeMember<CSSValue> m_weight; variable