Lines Matching defs:Seq
2067 /// Insert the new line info sequence \p Seq into the current
2069 static void insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq,
2071 if (Seq.empty())
2074 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
2075 llvm::append_range(Rows, Seq);
2076 Seq.clear();
2080 object::SectionedAddress Front = Seq.front().Address;
2090 *InsertPoint = Seq.front();
2091 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
2093 Rows.insert(InsertPoint, Seq.begin(), Seq.end());
2096 Seq.clear();
2164 std::vector<DWARFDebugLine::Row> Seq;
2192 if (StopAddress != -1ULL && !Seq.empty()) {
2195 auto NextLine = Seq.back();
2201 Seq.push_back(NextLine);
2202 insertLineSequence(Seq, NewRows);
2210 if (Row.EndSequence && Seq.empty())
2215 Seq.emplace_back(Row);
2218 insertLineSequence(Seq, NewRows);