reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  244     void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); }
lib/DebugInfo/DWARF/DWARFContext.cpp
 1144     const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
lib/DebugInfo/DWARF/DWARFDebugLine.cpp
  458   if (!Rows.empty()) {
  460     for (const Row &R : Rows) {
  468   Rows.clear();
  483   unsigned RowNumber = LineTable->Rows.size();
  922   RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex;
  923   RowIter LastRow = Rows.begin() + Seq.LastRowIndex;
  930   return RowPos - Rows.begin();
 1088   const auto &Row = Rows[RowIndex];
lib/DebugInfo/DWARF/DWARFVerifier.cpp
  749     for (const auto &Row : LineTable->Rows) {
  761           LineTable->Rows[RowIndex - 1].dump(OS);
tools/dsymutil/DwarfLinker.cpp
 1836   NewRows.reserve(LineTable.Rows.size());
 1855   for (auto &Row : LineTable.Rows) {
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
 1003   for (auto &row : line_table->Rows) {
tools/llvm-cfi-verify/lib/FileAnalysis.cpp
  436       if (LineTable && !LineTable->Rows.empty()) {
unittests/DebugInfo/DWARF/DWARFDebugLineTest.cpp
  479   EXPECT_EQ((*ExpectedLineTable)->Rows.size(), 6u);