Searched defs:nextValidIndex (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSelectElement.cpp528 int HTMLSelectElement::nextValidIndex(int listIndex, SkipDirection direction, int skip) const function in class:blink::HTMLSelectElement
554 return nextValidIndex(startIndex, SkipForwards, 1);
561 return nextValidIndex(startIndex, SkipBackwards, 1);
567 int index = nextValidIndex(items.size(), SkipBackwards, INT_MAX);
575 return nextValidIndex(-1, SkipForwards, INT_MAX);
592 return nextValidIndex(edgeIndex, direction, skipAmount);
1257 listIndex = nextValidIndex(listIndex, SkipForwards, 1);
1259 listIndex = nextValidIndex(listIndex, SkipBackwards, 1);
1261 listIndex = nextValidIndex(listIndex, SkipForwards, 3);
1263 listIndex = nextValidIndex(listInde
[all...]

Completed in 55 milliseconds