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

1 2

  /external/webkit/Source/WebCore/history/
BackForwardList.h 52 virtual int forwardListCount() = 0;
BackForwardController.cpp 89 return m_client->forwardListCount();
BackForwardListImpl.h 69 virtual int forwardListCount();
BackForwardListImpl.cpp 223 int BackForwardListImpl::forwardListCount()
234 if (index > forwardListCount())
  /external/webkit/Source/WebKit/chromium/src/
BackForwardListChromium.h 55 virtual int forwardListCount();
BackForwardListChromium.cpp 87 if (index > forwardListCount() || -index > backListCount())
112 int BackForwardListChromium::forwardListCount()
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardList.cpp 52 return toImpl(listRef)->forwardListCount();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardList.h 53 int forwardListCount() const;
InjectedBundleBackForwardList.cpp 59 int InjectedBundleBackForwardList::forwardListCount() const
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.h 143 @method forwardListCount
147 - (int)forwardListCount;
WebBackForwardList.mm 311 - (int)forwardListCount
313 return core(self)->forwardListCount();
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardList.cpp 66 return toImpl(listRef)->forwardListCount();
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.h 64 int forwardListCount() const;
qwkhistory.cpp 117 int QWKHistory::forwardListCount() const
124 return backListCount() + forwardListCount();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.cpp 197 int WebBackForwardListProxy::forwardListCount()
202 int forwardListCount = 0;
203 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardForwardListCount(), Messages::WebPageProxy::BackForwardForwardListCount::Reply(forwardListCount), m_page->pageID()))
206 return forwardListCount;
WebBackForwardListProxy.h 58 virtual int forwardListCount();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebBackForwardList.idl 152 @method forwardListCount
155 - (int)forwardListCount;
157 HRESULT forwardListCount([out, retval] int* sizecount);
  /external/webkit/Source/WebKit/win/
WebBackForwardList.h 93 virtual HRESULT STDMETHODCALLTYPE forwardListCount(
WebBackForwardList.cpp 259 HRESULT STDMETHODCALLTYPE WebBackForwardList::forwardListCount(
262 *count = m_backForwardList->forwardListCount();
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.h 75 int forwardListCount();
WebBackForwardList.cpp 154 if (index > forwardListCount())
167 int WebBackForwardList::forwardListCount()
197 unsigned size = std::min(static_cast<unsigned>(forwardListCount()), limit);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.cpp 123 if (core->forwardListCount() < 1)
278 int limit = core->forwardListCount();
318 return core->forwardListCount();
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 380 return backForwardList->forwardListCount();
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.cpp 358 return d->lst->forwardListCount() > 0;
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 637 int forwardListCount;
638 if (FAILED(bfList->forwardListCount(&forwardListCount)))
641 for (int i = forwardListCount; i > 0; --i) {
    [all...]

Completed in 515 milliseconds

1 2