Lines Matching refs:m_map
21 m_map.Sort(); in Finalize()
22 m_map.SizeToFit(); in Finalize()
26 m_map.Append(name, die_ref); in Insert()
31 for (const auto &entry : m_map.equal_range(name)) in Find()
39 for (const auto &entry : m_map) in Find()
50 const uint32_t size = m_map.GetSize(); in FindAllEntriesForUnit()
52 const DIERef &die_ref = m_map.GetValueAtIndexUnchecked(i); in FindAllEntriesForUnit()
64 const uint32_t size = m_map.GetSize(); in Dump()
66 s->Format("{0} \"{1}\"\n", m_map.GetValueAtIndexUnchecked(i), in Dump()
67 m_map.GetCStringAtIndexUnchecked(i)); in Dump()
74 const uint32_t size = m_map.GetSize(); in ForEach()
76 if (!callback(m_map.GetCStringAtIndexUnchecked(i), in ForEach()
77 m_map.GetValueAtIndexUnchecked(i))) in ForEach()
83 const uint32_t size = other.m_map.GetSize(); in Append()
85 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i), in Append()
86 other.m_map.GetValueAtIndexUnchecked(i)); in Append()