Home
last modified time | relevance | path

Searched refs:m_weight (Results 1 – 7 of 7) 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()
57 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/
DFontTraits.h76 : m_style(style), m_variant(variant), m_weight(weight), m_stretch(stretch), m_filler(0) in FontTraits()
89 FontWeight weight() const { return static_cast<FontWeight>(m_weight); } in weight()
97 unsigned m_weight : 4; member
DFontDescription.h68 , m_weight(FontWeightNormal) in FontDescription()
98 FontWeight weight() const { return static_cast<FontWeight>(m_weight); } in weight()
138 void setWeight(FontWeight w) { m_weight = w; } in setWeight()
192 unsigned m_weight : 4; // FontWeight variable
231 && m_weight == other.m_weight
DFontDescription.cpp57 switch (m_weight) { in lighterWeight()
79 switch (m_weight) { in bolderWeight()
/external/chromium_org/third_party/WebKit/Source/core/css/
DFontFace.cpp221 return m_weight ? m_weight->cssText() : "normal"; in weight()
293 m_weight = value; in setPropertyValue()
460 if (m_weight) { in traits()
461 if (!m_weight->isPrimitiveValue()) in traits()
464 switch (toCSSPrimitiveValue(m_weight.get())->getValueID()) { in traits()
624 visitor->trace(m_weight); in trace()
DFontFace.h122 RefPtrWillBeMember<CSSValue> m_weight; variable