Lines Matching defs:next
107 SPObject *next = child->getNext();108 SPObject *prev = next;109 TS_ASSERT(next->getPrev() == child);110 prev = next;111 next = next->getNext();112 while (next != NULL) {114 TS_ASSERT(next->getPrev() == prev);115 prev = next;116 next = next->getNext();118 TS_ASSERT(child->lastChild() == next);