OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextValidIndex
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp
484
int HTMLSelectElement::
nextValidIndex
(int listIndex, SkipDirection direction, int skip) const
503
return
nextValidIndex
(startIndex, SkipForwards, 1);
510
return
nextValidIndex
(startIndex, SkipBackwards, 1);
516
int index =
nextValidIndex
(items.size(), SkipBackwards, INT_MAX);
524
return
nextValidIndex
(-1, SkipForwards, INT_MAX);
541
return
nextValidIndex
(edgeIndex, direction, skipAmount);
[
all
...]
HTMLSelectElement.h
182
int
nextValidIndex
(int listIndex, SkipDirection, int skip) const;
Completed in 22 milliseconds