Searched refs:bfList (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Tools/DumpRenderTree/win/
H A DWorkQueueItemWin.cpp158 COMPtr<IWebBackForwardList> bfList; local
159 if (FAILED(webView->backForwardList(&bfList)))
163 if (FAILED(bfList->itemAtIndex(m_howFar, &item)))
H A DDumpRenderTree.cpp628 COMPtr<IWebBackForwardList> bfList; local
629 if (FAILED(webView->backForwardList(&bfList)))
638 if (FAILED(bfList->forwardListCount(&forwardListCount)))
643 if (FAILED(bfList->itemAtIndex(i, &item)))
653 if (FAILED(bfList->currentItem(&currentItem)))
663 if (FAILED(bfList->backListCount(&backListCount)))
668 if (FAILED(bfList->itemAtIndex(i, &item)))
1018 COMPtr<IWebBackForwardList> bfList; local
1019 if (SUCCEEDED(webView->backForwardList(&bfList)))
1020 bfList
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DWorkQueueItemMac.mm93 WebBackForwardList *bfList = [[mainFrame webView] backForwardList];
94 [[mainFrame webView] goToBackForwardItem:[bfList itemAtIndex:m_howFar]];
H A DDumpRenderTree.mm861 WebBackForwardList *bfList = [view backForwardList];
866 for (int i = [bfList forwardListCount]; i > 0; i--) {
867 WebHistoryItem *item = [bfList itemAtIndex:i];
873 assert([bfList currentItem] != prevTestBFItem);
874 [itemsToPrint addObject:[bfList currentItem]];
877 for (int i = -1; i >= -[bfList backListCount]; i--) {
878 WebHistoryItem *item = [bfList itemAtIndex:i];
/external/webkit/Tools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp344 WebKitWebBackForwardList* bfList = webkit_web_view_get_back_forward_list(view); local
349 gint forwardListCount = webkit_web_back_forward_list_get_forward_length(bfList);
351 WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(bfList, i);
358 WebKitWebHistoryItem* currentItem = webkit_web_back_forward_list_get_current_item(bfList);
364 gint backListCount = webkit_web_back_forward_list_get_back_length(bfList);
366 WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(bfList, i);
691 WebKitWebBackForwardList* bfList = webkit_web_view_get_back_forward_list(webView); local
692 prevTestBFItem = webkit_web_back_forward_list_get_current_item(bfList);

Completed in 372 milliseconds