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;
1048 p->m_previous = 0;
1058 it->m_previous = 0;
1069 ASSERT(!it->m_next->m_previous);
1070 it->m_next->m_previous = it;
1084 ASSERT(!it->m_previous);
1088 ASSERT(it->m_next->m_previous == it);
1089 it->m_next->m_previous = it->m_previous;
1091 if (it->m_previous) {
1093 ASSERT(it->m_previous->m_next == it);
1094 it->m_previous->m_next = it->m_next;
1103 it->m_previous = 0;