Home | History | Annotate | Download | only in search_engines

Lines Matching refs:row

175 string16 TemplateURLTableModel::GetText(int row, int col_id) {
176 DCHECK(row >= 0 && row < RowCount());
177 const TemplateURL& url = entries_[row]->template_url();
201 SkBitmap TemplateURLTableModel::GetIcon(int row) {
202 DCHECK(row >= 0 && row < RowCount());
203 return entries_[row]->GetIcon();
232 int TemplateURLTableModel::GetGroupID(int row) {
233 DCHECK(row >= 0 && row < RowCount());
234 return row < last_search_engine_index_ ? kMainGroupID : kOtherGroupID;