Home | History | Annotate | Download | only in tests

Lines Matching defs:node

750   GList *node;
862 node = q->tail;
863 g_assert (node == g_queue_pop_tail_link (q));
940 node = g_queue_peek_tail_link (q);
941 g_assert (node != NULL && node->data == GINT_TO_POINTER (1234));
942 node = g_queue_peek_nth_link (q, g_queue_get_length (q));
943 g_assert (node == NULL);
944 node = g_queue_peek_nth_link (q, g_queue_get_length (q) - 1);
945 g_assert (node->data == GINT_TO_POINTER (1234));
946 node = g_queue_pop_nth_link (q, g_queue_get_length (q));
947 g_assert (node == NULL);
948 node = g_queue_pop_nth_link (q, g_queue_get_length (q) - 1);
949 g_assert (node != NULL && node->data == GINT_TO_POINTER (1234));