Lines Matching defs:Rows
1532 // Set Line Table Rows.
1534 OutLineTable.Rows = InputLineTable->Rows;
1537 if (OutLineTable.Rows.size() == 1 && OutLineTable.Rows[0].EndSequence)
1538 OutLineTable.Rows.clear();
1544 NewRows.reserve(InputLineTable->Rows.size());
1564 for (DWARFDebugLine::Row Row : InputLineTable->Rows) {
1605 OutLineTable.Rows = std::move(NewRows);
1612 std::vector<DWARFDebugLine::Row> &Rows) {
1616 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
1617 llvm::append_range(Rows, Seq);
1624 Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; });
1630 if (InsertPoint != Rows.end() && InsertPoint->Address == Front &&
1633 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
1635 Rows.insert(InsertPoint, Seq.begin(), Seq.end());