Searched defs:m_intValue (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DLength.h70 : m_intValue(0), m_quirk(false), m_type(Auto), m_isFloat(false)
75 : m_intValue(0), m_quirk(false), m_type(t), m_isFloat(false)
81 : m_intValue(v), m_quirk(q), m_type(t), m_isFloat(false)
172 m_intValue = static_cast<int>(m_intValue * v);
211 m_intValue = value;
255 return m_isFloat ? !m_floatValue : !m_intValue;
321 return m_isFloat ? m_floatValue : m_intValue;
331 return m_isFloat ? static_cast<int>(m_floatValue) : m_intValue;
345 int m_intValue; member in union:blink::Length::__anon11241
[all...]

Completed in 67 milliseconds