Home | History | Annotate | Download | only in controls

Lines Matching refs:row

149   // while search after the current row, otherwise search starting from the
150 // current row.
151 int row = std::max(0, prefix_delegate_->GetSelectedRow());
158 row = (row + 1) % row_count;
162 const int start_row = row;
165 if (TextAtRowMatchesText(row, current_text_)) {
166 prefix_delegate_->SetSelectedRow(row);
169 row = (row + 1) % row_count;
170 } while (row != start_row);
173 bool PrefixSelector::TextAtRowMatchesText(int row,
176 base::i18n::ToLower(prefix_delegate_->GetTextForRow(row)));