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

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammar.h 47 double weight() const { return m_weight; }
48 void setWeight(double weight) { m_weight = weight; }
55 double m_weight; member in class:WebCore::SpeechGrammar
SpeechGrammar.cpp 51 : m_weight(1.0)
58 , m_weight(weight)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDescription.cpp 54 switch (m_weight) {
76 switch (m_weight) {
100 | (FontWeight100Mask << (m_weight - FontWeight100)));
FontDescription.h 86 , m_weight(FontWeightNormal)
115 FontWeight weight() const { return static_cast<FontWeight>(m_weight); }
153 void setWeight(FontWeight w) { m_weight = w; }
197 unsigned m_weight : 8; // FontWeight
230 && m_weight == other.m_weight
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.cpp 192 return m_weight ? m_weight->cssText() : "normal";
264 m_weight = value;
409 if (m_weight) {
410 if (!m_weight->isPrimitiveValue())
413 switch (toCSSPrimitiveValue(m_weight.get())->getValueID()) {
FontFace.h 101 RefPtr<CSSValue> m_weight; member in class:WebCore::FontFace

Completed in 568 milliseconds