Home
last modified time | relevance | path

Searched refs:nthB (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSSelector.cpp872 int nthB = 0; in parseNth() local
875 nthB = 1; in parseNth()
878 nthB = 0; in parseNth()
895 nthB = argument.substring(p + 1, argument.length() - p - 1).toInt(); in parseNth()
899 nthB = -argument.substring(p + 1, argument.length() - p - 1).toInt(); in parseNth()
902 nthB = argument.toInt(); in parseNth()
906 setNthBValue(nthB); in parseNth()
DCSSSelector.h357 void setNthBValue(int nthB) { m_bits.m_nth.m_b = nthB; } in setNthBValue()