reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
31 ListEntry(const ListEntry &rhs) = default; 35 ListEntry next() { 43 ListEntry prev() { 65 bool operator==(const ListEntry &rhs) const { return value() == rhs.value(); } 67 bool operator!=(const ListEntry &rhs) const { return !(*this == rhs); } 76 ListIterator(ListEntry entry) : m_entry(entry) {} 109 ListEntry m_entry; 130 ListEntry m_slow_runner; // Used for loop detection 131 ListEntry m_fast_runner; // Used for loop detection 253 ListEntry current(m_head); 352 ListEntry current(m_head);