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

References

tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
   38     assert(!m_worklist.empty() && "Incrementing end iterator?");
   41     DWARFDIE die = m_worklist.back();
   42     m_worklist.pop_back();
   48           m_worklist.push_back(d);
   59   const DWARFDIE &operator*() const { return m_worklist.back(); }
   72     if (a.m_worklist.empty() || b.m_worklist.empty())
   72     if (a.m_worklist.empty() || b.m_worklist.empty())
   73       return a.m_worklist.empty() == b.m_worklist.empty();
   73       return a.m_worklist.empty() == b.m_worklist.empty();
   74     return a.m_worklist.back() == b.m_worklist.back();
   74     return a.m_worklist.back() == b.m_worklist.back();