Lines Matching defs:prev
5 * - If a window is not on the ring, its TwmWindow::ring.next and .prev
9 * - Corollary: if a window is the only one on the ring, .next and .prev
28 TwmWindow *prev = win->ring.prev;
38 // But if it is, prev/next should always exist.
39 assert(prev != NULL);
47 * If the window is the only one in the ring, prev == next == win,
50 prev->ring.next = next;
51 next->ring.prev = prev;
53 win->ring.next = win->ring.prev = NULL;
70 win->ring.prev = after;
73 before->ring.prev = win;
80 assert(win->ring.prev == NULL);
86 win->ring.next = win->ring.prev = Scr->Ring = win;