Lines Matching defs:Seq
1547 std::vector<DWARFDebugLine::Row> Seq;
1575 if (StopAddress != -1ULL && !Seq.empty()) {
1578 auto NextLine = Seq.back();
1584 Seq.push_back(NextLine);
1585 insertLineSequence(Seq, NewRows);
1593 if (Row.EndSequence && Seq.empty())
1598 Seq.emplace_back(Row);
1601 insertLineSequence(Seq, NewRows);
1610 void CompileUnit::insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq,
1612 if (Seq.empty())
1615 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
1616 llvm::append_range(Rows, Seq);
1617 Seq.clear();
1621 object::SectionedAddress Front = Seq.front().Address;
1631 *InsertPoint = Seq.front();
1632 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
1634 Rows.insert(InsertPoint, Seq.begin(), Seq.end());
1637 Seq.clear();