Lines Matching full:first_row
553 RowIter first_row = Rows.begin() + found_seq.FirstRowIndex;
555 RowIter row_pos = std::lower_bound(first_row, last_row, row,
560 uint32_t index = found_seq.FirstRowIndex + (row_pos - first_row);
562 if (row_pos == first_row)
605 RowIter first_row = Rows.begin() + cur_seq.FirstRowIndex;
607 RowIter row_pos = std::upper_bound(first_row, last_row, row,
612 first_row_index = cur_seq.FirstRowIndex + (row_pos - first_row);
613 if (row_pos != first_row)
623 RowIter first_row = Rows.begin() + cur_seq.FirstRowIndex;
625 RowIter row_pos = std::upper_bound(first_row, last_row, row,
629 last_row_index = cur_seq.FirstRowIndex + (row_pos - first_row) - 1;