Searched defs:forwardListCount (Results 1 - 7 of 7) sorted by relevance

/external/webkit/WebKit/chromium/src/
H A DBackForwardListClientImpl.cpp93 if (!m_webView->client() || index > forwardListCount() || -index > backListCount())
121 int BackForwardListClientImpl::forwardListCount() function in class:WebKit::BackForwardListClientImpl
/external/webkit/WebCore/history/
H A DBackForwardListChromium.cpp114 int BackForwardList::forwardListCount() function in class:WebCore::BackForwardList
116 return m_client->forwardListCount();
H A DBackForwardList.cpp217 int BackForwardList::forwardListCount() function in class:BackForwardList
228 if (index > forwardListCount())
/external/webkit/WebKit/win/
H A DWebBackForwardList.cpp257 HRESULT STDMETHODCALLTYPE WebBackForwardList::forwardListCount( function in class:WebBackForwardList
260 *count = m_backForwardList->forwardListCount();
/external/webkit/WebCore/page/
H A DPage.cpp278 if (distance > 0 && distance <= m_backForwardList->forwardListCount())
293 int forwardListCount = m_backForwardList->forwardListCount(); local
294 if (forwardListCount > 0)
295 item = m_backForwardList->itemAtIndex(forwardListCount);
333 return m_backForwardList->backListCount() + 1 + m_backForwardList->forwardListCount();
/external/webkit/WebKitTools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp260 gint forwardListCount = webkit_web_back_forward_list_get_forward_length(bfList); local
261 for (int i = forwardListCount; i > 0; i--) {
/external/webkit/WebKitTools/DumpRenderTree/win/
H A DDumpRenderTree.cpp571 int forwardListCount; local
572 if (FAILED(bfList->forwardListCount(&forwardListCount)))
575 for (int i = forwardListCount; i > 0; --i) {

Completed in 91 milliseconds