Searched refs:currentItem (Results 1 - 25 of 52) sorted by relevance

123

/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebbackforwardlist.c30 WebKitWebHistoryItem* currentItem; local
71 currentItem = webkit_web_back_forward_list_get_current_item(backForwardList);
72 g_object_ref(currentItem);
73 g_assert_cmpint(G_OBJECT(currentItem)->ref_count, ==, 2);
74 g_object_unref(currentItem);
75 g_assert_cmpint(G_OBJECT(currentItem)->ref_count, ==, 1);
116 WebKitWebHistoryItem* currentItem; local
160 currentItem = WEBKIT_WEB_HISTORY_ITEM(backList->data);
161 g_assert_cmpstr(webkit_web_history_item_get_uri(currentItem), ==, "http://example.com/3/");
162 g_assert_cmpstr(webkit_web_history_item_get_title(currentItem),
205 WebKitWebHistoryItem* currentItem; local
[all...]
/external/webkit/Source/WebCore/history/
H A DBackForwardList.h69 HistoryItem* currentItem() { return itemAtIndex(0); } function in class:WebCore::BackForwardList
H A DBackForwardController.h67 HistoryItem* currentItem() { return itemAtIndex(0); } function in class:WebCore::BackForwardController
H A DBackForwardListImpl.cpp93 m_page->mainFrame()->loader()->client()->dispatchDidAddBackForwardItem(currentItem());
139 HistoryItem* BackForwardListImpl::currentItem() function in class:BackForwardListImpl
291 RefPtr<HistoryItem> currentItem = this->currentItem(); local
302 addItem(currentItem);
H A DBackForwardListImpl.h57 HistoryItem* currentItem();
H A DPageCache.cpp138 if (!frame->loader()->history()->currentItem()) {
272 && frame->loader()->history()->currentItem()
/external/webkit/Source/WebKit/mac/History/
H A DWebBackForwardList.h92 @method currentItem
96 - (WebHistoryItem *)currentItem;
H A DWebBackForwardList.mm192 - (WebHistoryItem *)currentItem
194 return [[kit(core(self)->currentItem()) retain] autorelease];
275 if (entries[i] == backForwardList->currentItem()) {
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKBackForwardList.cpp41 return toAPI(toImpl(listRef)->currentItem());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebBackForwardList.cpp119 WebBackForwardListItem* WebBackForwardList::currentItem() function in class:WebKit::WebBackForwardList
220 RefPtr<WebBackForwardListItem> currentItem = this->currentItem();
224 if (m_entries[i] != currentItem)
237 m_entries[0] = currentItem.release();
H A DWebBackForwardList.h66 WebBackForwardListItem* currentItem();
/external/webkit/Source/WebKit/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp106 QCOMPARE(hist->currentItem().title(), QString("page5"));
172 QWebHistoryItem current = hist->currentItem();
177 QVERIFY(hist->currentItem().title() != current.title());
180 QCOMPARE(hist->currentItem().title(), current.title());
268 QWebHistoryItem a = hist->currentItem();
285 QWebHistoryItem b = hist->currentItem();
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebBackForwardList.idl94 @method currentItem
97 - (WebHistoryItem *)currentItem;
99 HRESULT currentItem([out, retval] IWebHistoryItem** item);
/external/webkit/Source/WebCore/wml/
H A DWMLPageState.cpp129 HistoryItem* currentItem = page->backForward()->currentItem();
130 if (!currentItem)
134 currentURL = urlForHistoryItem(frame, currentItem);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkhistory.h66 QWKHistoryItem currentItem() const;
H A Dqwkhistory.cpp127 QWKHistoryItem QWKHistory::currentItem() const function in class:QWKHistory
/external/webkit/Source/WebCore/loader/
H A DHistoryController.h73 HistoryItem* currentItem() const { return m_currentItem.get(); } function in class:WebCore::HistoryController
H A DHistoryController.cpp111 // FIXME: As the ASSERT attests, it seems we should always have a currentItem here.
150 // Because of previousItem's "masking" of currentItem for this purpose, it's important
173 frame->loader()->history()->saveScrollPositionAndViewStateToItem(frame->loader()->history()->currentItem());
207 // When we are pre-commit, the currentItem is where the pageCache data resides
208 CachedPage* cachedPage = pageCache()->get(currentItem());
221 pageCache()->remove(currentItem());
255 RefPtr<HistoryItem> currentItem = page->backForward()->currentItem();
263 recursiveSetProvisionalItem(targetItem, currentItem.get(), type);
265 recursiveGoToItem(targetItem, currentItem
[all...]
H A DFrameLoader.cpp956 HistoryItem* parentItem = history()->currentItem();
1921 HistoryItem* item = history()->currentItem();
1997 pageCache()->remove(history()->currentItem());
2057 if (history()->currentItem() && !cachedPage)
2058 m_pendingStateObject = history()->currentItem()->stateObject();
2428 item = page->mainFrame()->loader()->history()->currentItem();
2661 history()->saveScrollPositionAndViewStateToItem(history()->currentItem());
3028 if (HistoryItem* resetItem = mainFrame->loader()->history()->currentItem()) {
3194 if (!history()->currentItem())
3196 return url == history()->currentItem()
3329 HistoryItem* currentItem = history()->currentItem(); local
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp225 currentItem(), and an arbitrary item in the history can be made the current
274 RefPtr<WebCore::HistoryItem> current = lst->currentItem();
413 QWebHistoryItem QWebHistory::currentItem() const function in class:QWebHistory
415 WebCore::HistoryItem *i = d->lst->currentItem();
537 WebCore::HistoryItem* nullItem = d->lst->currentItem();
H A Dqwebhistory.h88 QWebHistoryItem currentItem() const;
/external/webkit/Source/WebKit/win/
H A DWebBackForwardList.h68 virtual HRESULT STDMETHODCALLTYPE currentItem(
H A DWebBackForwardList.cpp171 HRESULT STDMETHODCALLTYPE WebBackForwardList::currentItem( function in class:WebBackForwardList
177 HistoryItem* historyItem = m_backForwardList->currentItem();
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp929 // If there is no currentItem, which happens when we are navigating in
932 RefPtr<HistoryItem> currentItem = m_frame->loader()->history()->currentItem(); local
933 if (!currentItem) {
934 currentItem = HistoryItem::create();
935 currentItem->setLastVisitWasFailure(true);
936 m_frame->loader()->history()->setCurrentItem(currentItem.get());
937 m_frame->page()->backForward()->setCurrentItem(currentItem.get());
940 m_inSameDocumentHistoryLoad = currentItem->shouldDoSameDocumentNavigationTo(historyItem.get());
1043 return WebHistoryItem(m_frame->page()->backForward()->currentItem());
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp652 COMPtr<IWebHistoryItem> currentItem; local
653 if (FAILED(bfList->currentItem(&currentItem)))
656 assert(currentItem != prevTestBFItem);
658 currentItem->QueryInterface(&currentItemUnknown);
1020 bfList->currentItem(&prevTestBFItem);

Completed in 340 milliseconds

123