Home | History | Annotate | Download | only in css

Lines Matching refs:argument

422     printf("%*sargument(): %s\n", indent, "", argument().ascii().data());
459 m_pseudoType = parsePseudoType(value(), !argument().isNull() || selectorList());
582 || sel1->argument() != sel2->argument()) {
638 str.append(cs->argument());
866 String argument = m_argument.lower();
868 if (argument.isEmpty())
873 if (argument == "odd") {
876 } else if (argument == "even") {
880 size_t n = argument.find('n');
882 if (argument[0] == '-') {
886 nthA = argument.substring(0, n).toInt();
890 nthA = argument.substring(0, n).toInt();
893 size_t p = argument.find('+', n);
895 nthB = argument.substring(p + 1, argument.length() - p - 1).toInt();
897 p = argument.find('-', n);
899 nthB = -argument.substring(p + 1, argument.length() - p - 1).toInt();
902 nthB = argument.toInt();