HomeSort by relevance Sort by last modified time
    Searched refs:goToItem (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Source/WebCore/history/
BackForwardList.h 48 virtual void goToItem(HistoryItem*) = 0;
BackForwardController.cpp 74 m_client->goToItem(item);
BackForwardListImpl.h 54 virtual void goToItem(HistoryItem*);
BackForwardListImpl.cpp 116 void BackForwardListImpl::goToItem(HistoryItem* item)
  /external/webkit/Source/WebKit/chromium/src/
BackForwardListChromium.h 52 virtual void goToItem(WebCore::HistoryItem*);
64 // of this until goToItem() is called, so we can track the navigation.
BackForwardListChromium.cpp 71 void BackForwardListChromium::goToItem(HistoryItem* item)
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.h 78 @method goToItem:
82 - (void)goToItem:(WebHistoryItem *)item;
WebBackForwardList.mm 182 - (void)goToItem:(WebHistoryItem *)item
184 core(self)->goToItem(core(item));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.h 54 virtual void goToItem(WebCore::HistoryItem*);
WebBackForwardListProxy.cpp 162 void WebBackForwardListProxy::goToItem(HistoryItem* item)
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.cpp 226 item by passing it to goToItem().
280 lst->goToItem(current.get()); //and set it as current again
365 \sa forward(), goToItem()
371 page->goToItem(d->lst->backItem(), WebCore::FrameLoadTypeIndexedBackForward);
379 \sa back(), goToItem()
385 page->goToItem(d->lst->forwardItem(), WebCore::FrameLoadTypeIndexedBackForward);
394 void QWebHistory::goToItem(const QWebHistoryItem &item)
397 page->goToItem(item.d->item, WebCore::FrameLoadTypeIndexedBackForward);
546 history.goToItem(history.itemAt(currentIndex));
qwebhistory.h 85 void goToItem(const QWebHistoryItem &item);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebBackForwardList.idl 78 @method goToItem:
81 - (void)goToItem:(WebHistoryItem *)item;
83 HRESULT goToItem([in] IWebHistoryItem* item);
  /external/webkit/Source/WebCore/loader/
HistoryController.h 89 void goToItem(HistoryItem*, FrameLoadType);
HistoryController.cpp 238 void HistoryController::goToItem(HistoryItem* targetItem, FrameLoadType type)
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLDocument.cpp 76 page->goToItem(item, FrameLoadTypeBackWMLDeckNotAccessible);
  /external/webkit/Source/WebKit/win/
WebBackForwardList.h 62 virtual HRESULT STDMETHODCALLTYPE goToItem(
WebBackForwardList.cpp 144 HRESULT STDMETHODCALLTYPE WebBackForwardList::goToItem(
152 m_backForwardList->goToItem(webHistoryItem->historyItem());
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.h 63 void goToItem(WebBackForwardListItem*);
WebBackForwardList.cpp 100 void WebBackForwardList::goToItem(WebBackForwardListItem* item)
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 54 void goToItem();
168 * Check QWebHistory::goToItem() method
170 void tst_QWebHistory::goToItem()
178 hist->goToItem(current);
  /external/webkit/Source/WebCore/page/
Page.cpp 300 goToItem(item, FrameLoadTypeBack);
311 goToItem(item, FrameLoadTypeForward);
348 goToItem(item, FrameLoadTypeIndexedBackForward);
351 void Page::goToItem(HistoryItem* item, FrameLoadType type)
357 // being deref()-ed. Make sure we can still use it with HistoryController::goToItem later.
363 m_mainFrame->loader()->history()->goToItem(item, type);
Page.h 155 void goToItem(HistoryItem*, FrameLoadType);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.cpp 181 history_core->goToItem(item_core);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 193 backForwardList->goToItem(historyItem);

Completed in 325 milliseconds

1 2