/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | RangeMap.h | 179 void Append(const Entry &entry) { m_entries.push_back(entry); } in Append() 181 void Append(B base, S size) { m_entries.emplace_back(base, size); } in Append() 186 if (m_entries.empty()) { in Insert() 187 m_entries.push_back(entry); in Insert() 190 auto begin = m_entries.begin(); in Insert() 191 auto end = m_entries.end(); in Insert() 206 m_entries.insert(pos, entry); in Insert() 210 if (idx < m_entries.size()) { in RemoveEntryAtIndex() 211 m_entries.erase(m_entries in RemoveEntryAtIndex() 408 Collection m_entries; global() variable [all...] |
H A D | Args.h | 116 size_t GetArgumentCount() const { return m_entries.size(); } in GetArgumentCount() 128 llvm::ArrayRef<ArgEntry> entries() const { return m_entries; } in entries() 132 const_iterator begin() const { return m_entries.begin(); } in begin() 133 const_iterator end() const { return m_entries.end(); } in end() 136 const ArgEntry &operator[](size_t n) const { return m_entries[n]; } 288 std::vector<ArgEntry> m_entries;
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LineTable.cpp | 22 : m_comp_unit(comp_unit), m_entries() {} in LineTable() 26 : m_comp_unit(comp_unit), m_entries() { in LineTable() 31 m_entries.insert(m_entries.end(), seq->m_entries.begin(), in LineTable() 32 seq->m_entries.end()); in LineTable() 51 llvm::upper_bound(m_entries, entry, less_than_bp); in InsertLineEntry() 56 m_entries.insert(pos, entry); in InsertLineEntry() 63 void LineTable::LineSequenceImpl::Clear() { m_entries.clear(); } in Clear() 79 entry_collection &entries = seq->m_entries; in AppendLineEntryToSequence() 108 if (seq->m_entries.empty()) in InsertSequence() 110 Entry &entry = seq->m_entries.front(); in InsertSequence() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Args.cpp | 186 m_entries.clear(); in operator =() 187 for (auto &entry : rhs.m_entries) { in operator =() 188 m_entries.emplace_back(entry.ref(), entry.quote); in operator =() 189 m_argv.push_back(m_entries.back().data()); in operator =() 203 for (auto &entry : m_entries) { in Dump() 214 for (size_t i = 0; i < m_entries.size(); ++i) { in GetCommandString() 217 char quote = m_entries[i].quote; in GetCommandString() 220 command += m_entries[i].ref(); in GetCommandString() 225 return !m_entries.empty(); in GetCommandString() 231 for (size_t i = 0; i < m_entries in GetQuotedCommandString() [all...] |
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFDeclContext.h | 53 DWARFDeclContext() : m_entries() {} in DWARFDeclContext() 56 llvm::append_range(m_entries, entries); in DWARFDeclContext() 60 m_entries.push_back(Entry(tag, name)); in AppendDeclContext() 66 uint32_t GetSize() const { return m_entries.size(); } in GetSize() 69 assert(idx < m_entries.size() && "invalid index"); 70 return m_entries[idx]; 74 assert(idx < m_entries.size() && "invalid index"); 75 return m_entries[idx]; 87 m_entries.clear(); in Clear() 95 for (const Entry &e : ctx.m_entries) { [all …]
|
H A D | DWARFDeclContext.cpp | 37 if (!m_entries.empty()) { in GetQualifiedName() 38 if (m_entries.size() == 1) { in GetQualifiedName() 39 if (m_entries[0].name) { in GetQualifiedName() 41 m_qualified_name.append(m_entries[0].name); in GetQualifiedName() 46 llvm::reverse(m_entries), string_stream, in GetQualifiedName() 57 if (m_entries.size() != rhs.m_entries.size()) in operator ==() 61 collection::const_iterator begin = m_entries.begin(); in operator ==() 62 collection::const_iterator end = m_entries.end(); in operator ==() 65 collection::const_iterator rhs_begin = rhs.m_entries.begin(); in operator ==()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | Alarm.cpp | 40 m_entries.emplace_back(callback, expiration); in Create() 41 handle = m_entries.back().handle; in Create() 66 std::find_if(m_entries.begin(), m_entries.end(), in Restart() 68 if (it == m_entries.end()) in Restart() 92 std::find_if(m_entries.begin(), m_entries.end(), in Cancel() 95 if (it == m_entries.end()) in Cancel() 98 m_entries.erase(it); in Cancel() 171 auto it = m_entries.begin(); in AlarmThread() 172 while (it != m_entries.end()) { in AlarmThread() 175 it = m_entries.erase(it); in AlarmThread() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | LineTable.h | 321 m_entries; ///< The collection of line entries in this line table. variable 333 m_entries; ///< The collection of line entries in this sequence. variable 347 const size_t count = m_entries.size(); in FindLineEntryIndexByFileIndexImpl() 361 if (m_entries[idx].is_terminal_entry) in FindLineEntryIndexByFileIndexImpl() 364 if (!file_idx_matcher(file_idx, m_entries[idx].file_idx)) in FindLineEntryIndexByFileIndexImpl() 373 if (m_entries[idx].line < line) { in FindLineEntryIndexByFileIndexImpl() 375 } else if (m_entries[idx].line == line) { in FindLineEntryIndexByFileIndexImpl() 380 m_entries[idx].line < m_entries[best_match].line) in FindLineEntryIndexByFileIndexImpl() 384 if (m_entries[idx].line < line) { in FindLineEntryIndexByFileIndexImpl() 386 } else if (m_entries[idx].line == line && in FindLineEntryIndexByFileIndexImpl() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectRegexCommand.cpp | 59 EntryCollection::const_iterator pos, end = m_entries.end(); in DoExecute() 60 for (pos = m_entries.begin(); pos != end; ++pos) { in DoExecute() 93 m_entries.resize(m_entries.size() + 1); in AddRegexCommand() 95 m_entries.back().regex = RegularExpression(re_cstr); in AddRegexCommand() 96 if (m_entries.back().regex.IsValid()) { in AddRegexCommand() 97 m_entries.back().command = command_cstr.str(); in AddRegexCommand() 101 m_entries.pop_back(); in AddRegexCommand()
|
H A D | CommandObjectRegexCommand.h | 35 bool HasRegexEntries() const { return !m_entries.empty(); } in HasRegexEntries() 54 EntryCollection m_entries; variable
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Progress.cpp | 85 : m_entries(), m_alarm(std::chrono::milliseconds(100)) {} in ProgressManager() 115 bool new_entry = !m_entries.contains(key); in Increment() 116 Entry &entry = m_entries[progress_data.title]; in Increment() 145 if (!m_entries.contains(key)) in Decrement() 148 Entry &entry = m_entries[key]; in Decrement() 182 if (!m_entries.contains(key)) in Expire() 187 if (m_entries[key].refcount != 0) in Expire() 191 ReportProgress(m_entries[key].data, EventType::End); in Expire() 192 m_entries.erase(key); in Expire()
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | FormatCache.cpp | 71 auto entry = m_entries[type]; in Get() 96 m_entries[type].Set(format_sp); in Set() 101 m_entries[type].Set(summary_sp); in Set() 107 m_entries[type].Set(synthetic_sp); in Set() 112 m_entries.clear(); in Clear()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/ |
H A D | ObjectContainerMachOFileset.h | 65 size_t GetNumObjects() const override { return m_entries.size(); } in GetNumObjects() 87 std::vector<Entry> m_entries; variable
|
H A D | ObjectContainerMachOFileset.cpp | 217 return ParseFileset(m_data, *header, m_entries, m_memory_addr); in ParseHeader() 294 for (Entry &entry : m_entries) { in FindEntry()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormatCache.h | 48 std::map<ConstString, Entry> m_entries; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | Alarm.h | 85 std::vector<Entry> m_entries; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Progress.h | 186 llvm::StringMap<Entry> m_entries; variable
|