Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSSelector.cpp871 int nthA = 0; in parseNth() local
874 nthA = 2; in parseNth()
877 nthA = 2; in parseNth()
884 nthA = -1; // -n == -1n in parseNth()
886 nthA = argument.substring(0, n).toInt(); in parseNth()
888 nthA = 1; // n == 1n in parseNth()
890 nthA = argument.substring(0, n).toInt(); in parseNth()
905 setNthAValue(nthA); in parseNth()
DCSSSelector.h355 void setNthAValue(int nthA) { m_bits.m_nth.m_a = nthA; } in setNthAValue()