Searched refs:forwardListCount (Results 1 - 25 of 30) sorted by relevance

12

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleBackForwardList.cpp52 return toImpl(listRef)->forwardListCount();
/external/webkit/Source/WebCore/history/
H A DBackForwardList.h52 virtual int forwardListCount() = 0;
H A DBackForwardController.cpp89 return m_client->forwardListCount();
H A DBackForwardListImpl.h69 virtual int forwardListCount();
H A DBackForwardListImpl.cpp223 int BackForwardListImpl::forwardListCount() function in class:BackForwardListImpl
234 if (index > forwardListCount())
/external/webkit/Source/WebKit/chromium/src/
H A DBackForwardListChromium.h55 virtual int forwardListCount();
H A DBackForwardListChromium.cpp87 if (index > forwardListCount() || -index > backListCount())
112 int BackForwardListChromium::forwardListCount() function in class:WebKit::BackForwardListChromium
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundleBackForwardList.h53 int forwardListCount() const;
H A DInjectedBundleBackForwardList.cpp59 int InjectedBundleBackForwardList::forwardListCount() const function in class:WebKit::InjectedBundleBackForwardList
/external/webkit/Source/WebKit/mac/History/
H A DWebBackForwardList.h143 @method forwardListCount
147 - (int)forwardListCount;
H A DWebBackForwardList.mm311 - (int)forwardListCount
313 return core(self)->forwardListCount();
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKBackForwardList.cpp66 return toImpl(listRef)->forwardListCount();
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebBackForwardListProxy.cpp197 int WebBackForwardListProxy::forwardListCount() function in class:WebKit::WebBackForwardListProxy
202 int forwardListCount = 0; local
203 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardForwardListCount(), Messages::WebPageProxy::BackForwardForwardListCount::Reply(forwardListCount), m_page->pageID()))
206 return forwardListCount;
H A DWebBackForwardListProxy.h58 virtual int forwardListCount();
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebBackForwardList.idl152 @method forwardListCount
155 - (int)forwardListCount;
157 HRESULT forwardListCount([out, retval] int* sizecount);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkhistory.h64 int forwardListCount() const;
H A Dqwkhistory.cpp117 int QWKHistory::forwardListCount() const function in class:QWKHistory
124 return backListCount() + forwardListCount();
/external/webkit/Source/WebKit2/UIProcess/
H A DWebBackForwardList.h75 int forwardListCount();
H A DWebBackForwardList.cpp154 if (index > forwardListCount())
167 int WebBackForwardList::forwardListCount() function in class:WebKit::WebBackForwardList
197 unsigned size = std::min(static_cast<unsigned>(forwardListCount()), limit);
/external/webkit/Source/WebKit/win/
H A DWebBackForwardList.h93 virtual HRESULT STDMETHODCALLTYPE forwardListCount(
H A DWebBackForwardList.cpp259 HRESULT STDMETHODCALLTYPE WebBackForwardList::forwardListCount( function in class:WebBackForwardList
262 *count = m_backForwardList->forwardListCount();
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_history.cpp123 if (core->forwardListCount() < 1)
278 int limit = core->forwardListCount();
318 return core->forwardListCount();
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebbackforwardlist.cpp380 return backForwardList->forwardListCount();
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp358 return d->lst->forwardListCount() > 0;
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp637 int forwardListCount; local
638 if (FAILED(bfList->forwardListCount(&forwardListCount)))
641 for (int i = forwardListCount; i > 0; --i) {

Completed in 628 milliseconds

12