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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSUnicodeRangeValue.cpp 35 if (m_from == m_to)
37 return String::format("U+%X-%X", m_from, m_to);
42 return m_from == other.m_from && m_to == other.m_to;
CSSUnicodeRangeValue.h 42 UChar32 to() const { return m_to; }
52 , m_to(to)
57 UChar32 m_to; member in class:WebCore::CSSUnicodeRangeValue
CSSFontFace.h 74 , m_to(to)
79 UChar32 to() const { return m_to; }
80 bool contains(UChar32 c) const { return m_from <= c && c <= m_to; }
84 UChar32 m_to; member in struct:WebCore::CSSFontFace::UnicodeRange
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
SegmentedFontData.h 40 , m_to(to)
46 UChar32 to() const { return m_to; }
47 bool isEntireRange() const { return !m_from && m_to >= 0x10ffff; }
52 UChar32 m_to; member in struct:WebCore::FontDataRange
  /external/chromium_org/third_party/WebKit/Source/platform/
CalculationValue.h 218 , m_to(to)
226 return m_progress == o.m_progress && m_from == o.m_from && m_to == o.m_to;
236 return (1.0f - m_progress) * floatValueForLength(m_from, maxValue) + m_progress * floatValueForLength(m_to, maxValue);
240 const Length& to() const { return m_to; }
245 Length m_to; member in class:WebCore::CalcExpressionBlendLength

Completed in 202 milliseconds