Home
last modified time | relevance | path

Searched refs:m_map (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DUniqueCStringMap.h55 if (idx < m_map.size()) { in GetValueAtIndex()
63 return m_map[idx].cstring; in GetCStringAtIndexUnchecked()
73 return m_map[idx].value; in GetValueRefAtIndexUnchecked()
77 return ((idx < m_map.size()) ? m_map[idx].cstring : ConstString()); in GetCStringAtIndex()
112 if (!m_map.empty()) { in FindNextValueForName()
128 m_map.begin(), m_map.end(), unique_cstr, Compare()))) in GetValues()
190 if (m_map.size() < m_map.capacity()) { in SizeToFit()
191 collection temp(m_map.begin(), m_map.end()); in SizeToFit()
192 m_map.swap(temp); in SizeToFit()
205 std::equal_range(m_map.begin(), m_map.end(), unique_cstr, Compare())); in equal_range()
[all …]
H A DThreadSafeDenseMap.h27 : m_map(map_initial_capacity), m_mutex() {} in m_map() function
31 m_map.insert(std::make_pair(k, v)); in Insert()
36 m_map.erase(k); in Erase()
41 return m_map.lookup(k); in Lookup()
46 auto iter = m_map.find(k), end = m_map.end(); in Lookup()
55 m_map.clear(); in Clear()
59 LLVMMapType m_map;
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp24 m_map.Sort(std::less<DIERef>()); in Finalize()
25 m_map.SizeToFit(); in Finalize()
29 m_map.Append(name, die_ref); in Insert()
42 for (const auto &entry : m_map) in Find()
89 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i), in Append()
98 m_map.Clear(); in Decode()
103 m_map.Reserve(count); in Decode()
123 m_map.Sort(std::less<DIERef>()); in Decode()
130 for (const auto &entry : m_map) { in Encode()
140 if (size != rhs.m_map.GetSize()) in operator ==()
[all …]
H A DNameToDIE.h23 NameToDIE() : m_map() {} in NameToDIE()
85 bool IsEmpty() const { return m_map.IsEmpty(); } in IsEmpty()
87 void Clear() { m_map.Clear(); } in Clear()
90 lldb_private::UniqueCStringMap<DIERef> m_map;
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp29 m_map[name] = entry; in Add()
36 MapIterator iter = m_map.find(name); in Delete()
37 if (iter == m_map.end()) in Delete()
39 m_map.erase(name); in Delete()
97 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
127 m_map.clear(); in Clear()
136 if (iter == m_map.end()) in Get()
144 MapIterator iter = m_map.begin(); in Get()
145 MapIterator end = m_map.end(); in Get()
162 MapIterator pos, end = m_map.end(); in AnyMatches()
[all …]
H A DFormatCache.cpp55 auto i = m_map.find(type), e = m_map.end(); in GetEntry()
58 m_map[type] = FormatCache::Entry(); in GetEntry()
59 return m_map[type]; in GetEntry()
120 m_map.clear(); in Clear()
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h135 for (auto iter = m_map.begin(); iter != m_map.end(); ++iter) in Delete()
137 m_map.erase(iter); in Delete()
147 for (auto &formatter : llvm::reverse(m_map)) { in Get()
158 for (const auto &pos : m_map) in GetExact()
168 if (index >= m_map.size()) in GetAtIndex()
170 return m_map[index].second; in GetAtIndex()
175 if (index >= m_map.size()) in GetTypeNameSpecifierAtIndex()
184 m_map.clear(); in Clear()
192 for (const auto &pos : m_map) { in ForEach()
202 return m_map.size(); in GetCount()
[all …]
H A DTypeCategoryMap.h78 uint32_t GetCount() { return m_map.size(); } in GetCount()
98 MapType m_map; variable
101 MapType &map() { return m_map; } in map()
H A DFormatCache.h49 CacheMap m_map; variable
/llvm-project-15.0.7/lldb/source/Symbol/
H A DTypeSystem.cpp183 TypeSystemMap::TypeSystemMap() : m_mutex(), m_map() {} in TypeSystemMap()
191 map = m_map; in Clear()
205 m_map.clear(); in Clear()
215 for (auto pair : m_map) { in ForEach()
234 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage()
235 if (pos != m_map.end()) { in GetTypeSystemForLanguage()
246 for (const auto &pair : m_map) { in GetTypeSystemForLanguage()
250 m_map[language] = pair.second; in GetTypeSystemForLanguage()
270 m_map[language] = type_system_sp; in GetTypeSystemForLanguage()
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DMaterializer.h40 return m_materializer && m_map && in IsValid()
49 : m_materializer(&materializer), m_map(&map), in Dematerializer()
60 IRMemoryMap *m_map = nullptr; variable
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp145 return m_map.try_emplace(file, m_map.size() + 1).first->second; in operator []()
154 llvm::DenseMap<size_t, size_t> m_map; member in __anon35392e8c0111::SupportFileMap
161 result.resize(m_map.size() + 1); in translate()
163 for (const auto &KV : m_map) { in translate()
/llvm-project-15.0.7/lldb/source/Expression/
H A DMaterializer.cpp1548 exe_scope = m_map->GetBestExecutionContextScope(); in Dematerialize()
1565 entity_up->DumpToLog(*m_map, m_process_address, log); in Dematerialize()
1569 entity_up->Dematerialize(frame_sp, *m_map, m_process_address, frame_top, in Dematerialize()
1585 entity_up->Wipe(*m_map, m_process_address); in Wipe()
1589 m_map = nullptr; in Wipe()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DTypeSystem.h535 collection m_map; variable