Home | History | Annotate | Download | only in DebugInfo

Lines Matching refs:row_pos

512   RowIter row_pos = std::lower_bound(first_row, last_row, row,
514 if (row_pos == last_row) {
517 uint32_t index = found_seq.FirstRowIndex + (row_pos - first_row);
518 if (row_pos->Address > address) {
519 if (row_pos == first_row)
566 RowIter row_pos = std::upper_bound(first_row, last_row, row,
568 // The 'row_pos' iterator references the first row that is greater than
571 first_row_index = cur_seq.FirstRowIndex + (row_pos - first_row);
572 if (row_pos != first_row)
584 RowIter row_pos = std::upper_bound(first_row, last_row, row,
586 // The 'row_pos' iterator references the first row that is greater than
588 last_row_index = cur_seq.FirstRowIndex + (row_pos - first_row) - 1;