Searched refs:m_from (Results 1 – 5 of 5) sorted by relevance
35 if (m_from == m_to) in customCSSText()36 return String::format("U+%X", m_from); in customCSSText()37 return String::format("U+%X-%X", m_from, m_to); in customCSSText()42 return m_from == other.m_from && m_to == other.m_to; in equals()
41 UChar32 from() const { return m_from; } in from()51 , m_from(from) in CSSUnicodeRangeValue()56 UChar32 m_from; variable
73 : m_from(from) in UnicodeRange()78 UChar32 from() const { return m_from; } in from()80 bool contains(UChar32 c) const { return m_from <= c && c <= m_to; } in contains()83 UChar32 m_from;
39 : m_from(from) in FontDataRange()45 UChar32 from() const { return m_from; } in from()47 bool isEntireRange() const { return !m_from && m_to >= 0x10ffff; } in isEntireRange()51 UChar32 m_from;
217 : m_from(from) in CalcExpressionBlendLength()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 * floatValueForLen… in evaluate()239 const Length& from() const { return m_from; } in from()244 Length m_from;