Home
last modified time | relevance | path

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

/external/chromium_org/ui/gfx/
Drender_text.cc601 size_t selection_max = selection().GetMax(); in SelectWord() local
619 if (selection_min == selection_max && selection_max != text().length()) in SelectWord()
620 ++selection_max; in SelectWord()
622 for (; selection_max < text().length(); ++selection_max) in SelectWord()
623 if (iter.IsEndOfWord(selection_max) || iter.IsStartOfWord(selection_max)) in SelectWord()
627 MoveCursorTo(reversed ? selection_max : selection_min, false); in SelectWord()
628 MoveCursorTo(reversed ? selection_min : selection_max, true); in SelectWord()