Home
last modified time | relevance | path

Searched refs:m_mapping (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DReproducerInstrumentation.cpp20 return m_mapping.lookup(idx); in GetObjectForIndexImpl()
25 m_mapping[idx] = object; in AddObjectForIndexImpl()
30 for (auto &e : m_mapping) { in GetAllObjects()
188 unsigned index = m_mapping.size() + 1; in GetIndexForObjectImpl()
189 auto it = m_mapping.find(object); in GetIndexForObjectImpl()
190 if (it == m_mapping.end()) in GetIndexForObjectImpl()
191 m_mapping[object] = index; in GetIndexForObjectImpl()
192 return m_mapping[object]; in GetIndexForObjectImpl()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducerInstrumentation.h279 llvm::DenseMap<unsigned, void *> m_mapping; variable
602 llvm::DenseMap<const void *, unsigned> m_mapping;