Home | History | Annotate | Download | only in dom

Lines Matching full:direction

527 // Returns the index of the next valid list item |skip| items past |listIndex| in direction |direction|.
528 static int nextValidIndex(const Vector<Element*>& listItems, int listIndex, SkipDirection direction, int skip)
532 for (listIndex += direction; listIndex >= 0 && listIndex < size; listIndex += direction) {
831 if (string[i] != noBreakSpace && (string[i] <= 0x7F ? !isASCIISpace(string[i]) : (direction(string[i]) != WhiteSpaceNeutral)))