Lines Matching full:first_row
510 RowIter first_row = Rows.begin() + found_seq.FirstRowIndex;
512 RowIter row_pos = std::lower_bound(first_row, last_row, row,
517 uint32_t index = found_seq.FirstRowIndex + (row_pos - first_row);
519 if (row_pos == first_row)
564 RowIter first_row = Rows.begin() + cur_seq.FirstRowIndex;
566 RowIter row_pos = std::upper_bound(first_row, last_row, row,
571 first_row_index = cur_seq.FirstRowIndex + (row_pos - first_row);
572 if (row_pos != first_row)
582 RowIter first_row = Rows.begin() + cur_seq.FirstRowIndex;
584 RowIter row_pos = std::upper_bound(first_row, last_row, row,
588 last_row_index = cur_seq.FirstRowIndex + (row_pos - first_row) - 1;