Lines Matching refs:m_map
24 m_map.Sort(std::less<DIERef>()); in Finalize()
25 m_map.SizeToFit(); in Finalize()
29 m_map.Append(name, die_ref); in Insert()
34 for (const auto &entry : m_map.equal_range(name)) in Find()
42 for (const auto &entry : m_map) in Find()
54 const uint32_t size = m_map.GetSize(); in FindAllEntriesForUnit()
56 const DIERef &die_ref = m_map.GetValueAtIndexUnchecked(i); in FindAllEntriesForUnit()
68 const uint32_t size = m_map.GetSize(); in Dump()
70 s->Format("{0} \"{1}\"\n", m_map.GetValueAtIndexUnchecked(i), in Dump()
71 m_map.GetCStringAtIndexUnchecked(i)); in Dump()
78 const uint32_t size = m_map.GetSize(); in ForEach()
80 if (!callback(m_map.GetCStringAtIndexUnchecked(i), in ForEach()
81 m_map.GetValueAtIndexUnchecked(i))) in ForEach()
87 const uint32_t size = other.m_map.GetSize(); in Append()
89 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i), in Append()
90 other.m_map.GetValueAtIndexUnchecked(i)); in Append()
98 m_map.Clear(); in Decode()
103 m_map.Reserve(count); in Decode()
110 m_map.Append(ConstString(str), *die_ref); in Decode()
123 m_map.Sort(std::less<DIERef>()); in Decode()
129 encoder.AppendU32(m_map.GetSize()); in Encode()
130 for (const auto &entry : m_map) { in Encode()
139 const size_t size = m_map.GetSize(); in operator ==()
140 if (size != rhs.m_map.GetSize()) in operator ==()
143 if (m_map.GetCStringAtIndex(i) != rhs.m_map.GetCStringAtIndex(i)) in operator ==()
145 if (m_map.GetValueRefAtIndexUnchecked(i) != in operator ==()
146 rhs.m_map.GetValueRefAtIndexUnchecked(i)) in operator ==()