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

References

tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
   19     if (!m_entries.empty()) {
   20       if (m_entries.size() == 1) {
   21         if (m_entries[0].name) {
   23           m_qualified_name.append(m_entries[0].name);
   27         collection::const_reverse_iterator begin = m_entries.rbegin();
   28         collection::const_reverse_iterator end = m_entries.rend();
   55   if (m_entries.size() != rhs.m_entries.size())
   55   if (m_entries.size() != rhs.m_entries.size())
   59   collection::const_iterator begin = m_entries.begin();
   60   collection::const_iterator end = m_entries.end();
   63   collection::const_iterator rhs_begin = rhs.m_entries.begin();
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
   47     m_entries.push_back(Entry(tag, name));
   52   uint32_t GetSize() const { return m_entries.size(); }
   56     return m_entries[idx];
   61     return m_entries[idx];
   73     m_entries.clear();