Home | History | Annotate | Download | only in wtf

Lines Matching refs:m_previous

214         // Any modifications of the m_next or m_previous of an iterator that is in a linked list of a HashTable::m_iterator,
218 mutable const_iterator* m_previous;
1060 p->m_previous = 0;
1070 it->m_previous = 0;
1081 ASSERT(!it->m_next->m_previous);
1082 it->m_next->m_previous = it;
1096 ASSERT(!it->m_previous);
1100 ASSERT(it->m_next->m_previous == it);
1101 it->m_next->m_previous = it->m_previous;
1103 if (it->m_previous) {
1105 ASSERT(it->m_previous->m_next == it);
1106 it->m_previous->m_next = it->m_next;
1115 it->m_previous = 0;