HomeSort by relevance Sort by last modified time
    Searched refs:backListCount (Results 1 - 20 of 20) sorted by null

  /external/webkit/WebKit/chromium/src/
BackForwardListClientImpl.h 55 virtual int backListCount();
BackForwardListClientImpl.cpp 93 if (!m_webView->client() || index > forwardListCount() || -index > backListCount())
113 int BackForwardListClientImpl::backListCount()
  /external/webkit/WebCore/history/
BackForwardList.h 57 virtual int backListCount() = 0;
92 int backListCount();
BackForwardListChromium.cpp 109 int BackForwardList::backListCount()
111 return m_client->backListCount();
BackForwardList.cpp 212 int BackForwardList::backListCount()
  /external/webkit/WebKit/mac/History/
WebBackForwardList.h 136 @method backListCount
140 - (int)backListCount;
WebBackForwardList.mm 302 - (int)backListCount
304 return core(self)->backListCount();
  /external/webkit/WebKit/win/Interfaces/
IWebBackForwardList.idl 144 @method backListCount
147 - (int)backListCount;
149 HRESULT backListCount([out, retval] int* count);
  /external/webkit/WebKit/win/
WebBackForwardList.h 90 virtual HRESULT STDMETHODCALLTYPE backListCount(
WebBackForwardList.cpp 250 HRESULT STDMETHODCALLTYPE WebBackForwardList::backListCount(
253 *count = m_backForwardList->backListCount();
WebView.cpp     [all...]
  /external/webkit/WebCore/page/
Page.cpp 283 if (distance < 0 && -distance <= m_backForwardList->backListCount())
300 int backListCount = m_backForwardList->backListCount();
301 if (backListCount > 0)
302 item = m_backForwardList->itemAtIndex(-backListCount);
336 return m_backForwardList->backListCount() + 1 + m_backForwardList->forwardListCount();
  /external/webkit/WebKit/qt/Api/
qwebhistory.cpp 344 return d->lst->backListCount() > 0;
435 return d->lst->backListCount();
  /external/webkit/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 358 return backForwardList->backListCount();
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 596 int backListCount;
597 if (FAILED(bfList->backListCount(&backListCount)))
600 for (int i = -1; i >= -backListCount; --i) {
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
DumpRenderTree.cpp 275 gint backListCount = webkit_web_back_forward_list_get_back_length(bfList);
276 for (int i = -1; i >= -(backListCount); i--) {
  /external/webkit/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 308 int backListCount = [history backListCount];
309 for (int backIndex = 0; backIndex <= backListCount && !originalURL; backIndex++) {
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 837 m_webFrame->updateHistoryIndex(list->backListCount());
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTree.mm     [all...]
  /external/webkit/WebKit/mac/WebView/
WebView.mm     [all...]

Completed in 1377 milliseconds