Searched refs:prevTestBFItem (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Tools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp93 static WebKitWebHistoryItem* prevTestBFItem = NULL; variable
346 // Print out all items in the list after prevTestBFItem, which was from the previous test
353 ASSERT(item != prevTestBFItem);
367 if (item == prevTestBFItem)
689 if (prevTestBFItem)
690 g_object_unref(prevTestBFItem);
692 prevTestBFItem = webkit_web_back_forward_list_get_current_item(bfList);
693 if (prevTestBFItem)
694 g_object_ref(prevTestBFItem);
/external/webkit/Tools/DumpRenderTree/mac/
H A DDumpRenderTree.mm148 static WebHistoryItem *prevTestBFItem = nil; // current b/f item at the end of the previous test
863 // Print out all items in the list after prevTestBFItem, which was from the previous test
869 assert(item != prevTestBFItem);
873 assert([bfList currentItem] != prevTestBFItem);
879 if (item == prevTestBFItem)
1140 [prevTestBFItem release];
1141 prevTestBFItem = [[[[mainFrame webView] backForwardList] currentItem] retain];
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp97 static COMPtr<IWebHistoryItem> prevTestBFItem; // current b/f item at the end of the previous test variable
632 // Print out all items in the list after prevTestBFItem, which was from the previous test
646 assert(item != prevTestBFItem);
656 assert(currentItem != prevTestBFItem);
670 if (item == prevTestBFItem)
1016 prevTestBFItem = 0;
1020 bfList->currentItem(&prevTestBFItem);

Completed in 46 milliseconds