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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp 914 return count == nthBValue();
916 if (count < nthBValue())
918 return (count - nthBValue()) % nthAValue() == 0;
920 if (count > nthBValue())
922 return (nthBValue() - count) % (-nthAValue()) == 0;
CSSSelector.h 356 int nthBValue() const { return m_bits.m_nth.m_b; }

Completed in 36 milliseconds