Lines Matching defs:Rows
2068 /// set of already linked line info \p Rows.
2070 std::vector<DWARFDebugLine::Row> &Rows) {
2074 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
2075 llvm::append_range(Rows, Seq);
2082 Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; });
2088 if (InsertPoint != Rows.end() && InsertPoint->Address == Front &&
2091 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
2093 Rows.insert(InsertPoint, Seq.begin(), Seq.end());
2148 // Set Line Table Rows.
2150 LineTable.Rows = LT->Rows;
2153 if (LineTable.Rows.size() == 1 && LineTable.Rows[0].EndSequence)
2154 LineTable.Rows.clear();
2160 NewRows.reserve(LT->Rows.size());
2180 for (DWARFDebugLine::Row Row : LT->Rows) {
2221 LineTable.Rows = std::move(NewRows);