Home | History | Annotate | Download | only in tests

Lines Matching defs:forwardList

39     GList* forwardList = NULL;
94 forwardList = webkit_web_back_forward_list_get_forward_list_with_limit(backForwardList, 5);
95 for (; forwardList; forwardList = forwardList->next)
96 g_assert_cmpint(G_OBJECT(forwardList->data)->ref_count, ==, 1);
98 g_list_free(forwardList);
118 GList* forwardList = NULL;
177 forwardList = webkit_web_back_forward_list_get_forward_list_with_limit(webBackForwardList,5);
178 g_assert(forwardList);
180 currentItem = WEBKIT_WEB_HISTORY_ITEM(forwardList->data);
183 forwardList = forwardList->next;
185 currentItem = WEBKIT_WEB_HISTORY_ITEM(forwardList->data);
188 forwardList = forwardList->next;
190 currentItem = WEBKIT_WEB_HISTORY_ITEM(forwardList->data);
194 g_list_free(forwardList);