Lines Matching refs:m_map
26 m_map.Sort(std::less<DIERef>()); in Finalize()
27 m_map.SizeToFit(); in Finalize()
31 m_map.Append(name, die_ref); in Insert()
36 for (const auto &entry : m_map.equal_range(name)) in Find()
44 for (const auto &entry : m_map) in Find()
55 const uint32_t size = m_map.GetSize(); in FindAllEntriesForUnit()
57 const DIERef &die_ref = m_map.GetValueAtIndexUnchecked(i); in FindAllEntriesForUnit()
69 const uint32_t size = m_map.GetSize(); in Dump()
71 s->Format("{0} \"{1}\"\n", m_map.GetValueAtIndexUnchecked(i), in Dump()
72 m_map.GetCStringAtIndexUnchecked(i)); in Dump()
79 const uint32_t size = m_map.GetSize(); in ForEach()
81 if (!callback(m_map.GetCStringAtIndexUnchecked(i), in ForEach()
82 m_map.GetValueAtIndexUnchecked(i))) in ForEach()
88 const uint32_t size = other.m_map.GetSize(); in Append()
90 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i), in Append()
91 other.m_map.GetValueAtIndexUnchecked(i)); in Append()
99 m_map.Clear(); in Decode()
104 m_map.Reserve(count); in Decode()
111 m_map.Append(ConstString(str), *die_ref); in Decode()
124 m_map.Sort(std::less<DIERef>()); in Decode()
130 encoder.AppendU32(m_map.GetSize()); in Encode()
131 for (const auto &entry : m_map) { in Encode()
140 const size_t size = m_map.GetSize(); in operator ==()
141 if (size != rhs.m_map.GetSize()) in operator ==()
144 if (m_map.GetCStringAtIndex(i) != rhs.m_map.GetCStringAtIndex(i)) in operator ==()
146 if (m_map.GetValueRefAtIndexUnchecked(i) != in operator ==()
147 rhs.m_map.GetValueRefAtIndexUnchecked(i)) in operator ==()