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

  /external/chromium_org/third_party/WebKit/Source/core/css/
SiblingTraversalStrategies.h 118 , m_nth(nth)
134 int m_nth; member in class:blink::FINAL
139 ASSERT(element == toElement(m_siblings[m_nth]));
141 for (int i = m_nth - 1; i >= 0; --i) {
151 ASSERT(element == toElement(m_siblings[m_nth]));
153 for (size_t i = m_nth + 1; i < m_siblings.size(); ++i) {
163 ASSERT(element == toElement(m_siblings[m_nth]));
165 for (int i = m_nth - 1; i >= 0; --i) {
175 ASSERT(element == toElement(m_siblings[m_nth]));
177 for (size_t i = m_nth + 1; i < m_siblings.size(); ++i)
    [all...]
CSSSelector.h 354 int nthAValue() const { return m_bits.m_nth.m_a; }
355 void setNthAValue(int nthA) { m_bits.m_nth.m_a = nthA; }
356 int nthBValue() const { return m_bits.m_nth.m_b; }
357 void setNthBValue(int nthB) { m_bits.m_nth.m_b = nthB; }
364 } m_nth; member in union:blink::CSSSelector::RareData::__anon15639

Completed in 825 milliseconds