Lines Matching refs:MapEntry
47 class MapEntry { class
49 MapEntry() = default;
50 explicit MapEntry(ValueObjectSP entry_sp) : m_entry_sp(entry_sp) {} in MapEntry() function in MapEntry
51 explicit MapEntry(ValueObject *entry) in MapEntry() function in MapEntry
95 bool operator==(const MapEntry &rhs) const { in operator ==()
132 MapEntry right(m_entry.right()); in next()
146 m_entry = MapEntry(); in next()
150 m_entry = MapEntry(m_entry.parent()); in next()
154 MapEntry tree_min(MapEntry x) { in tree_min()
156 return MapEntry(); in tree_min()
157 MapEntry left(x.left()); in tree_min()
162 return MapEntry(); in tree_min()
168 return MapEntry(); in tree_min()
173 bool is_left_child(const MapEntry &x) { in is_left_child()
176 MapEntry rhs(x.parent()); in is_left_child()
181 MapEntry m_entry;