Home | History | Annotate | Download | only in wtf

Lines Matching refs:m_next

214         // Any modifications of the m_next or m_previous of an iterator that is in a linked list of a HashTable::m_iterator,
217 mutable const_iterator* m_next;
1057 next = p->m_next;
1059 p->m_next = 0;
1074 it->m_next = 0;
1078 it->m_next = table->m_iterators;
1080 if (it->m_next) {
1081 ASSERT(!it->m_next->m_previous);
1082 it->m_next->m_previous = it;
1095 ASSERT(!it->m_next);
1099 if (it->m_next) {
1100 ASSERT(it->m_next->m_previous == it);
1101 it->m_next->m_previous = it->m_previous;
1105 ASSERT(it->m_previous->m_next == it);
1106 it->m_previous->m_next = it->m_next;
1109 it->m_table->m_iterators = it->m_next;
1114 it->m_next = 0;