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

1 2

  /external/webkit/Source/WebCore/history/
BackForwardList.h 51 virtual int backListCount() = 0;
BackForwardController.cpp 84 return m_client->backListCount();
BackForwardListImpl.h 68 virtual int backListCount();
BackForwardListImpl.cpp 218 int BackForwardListImpl::backListCount()
  /external/webkit/Source/WebKit/chromium/src/
BackForwardListChromium.h 54 virtual int backListCount();
BackForwardListChromium.cpp 87 if (index > forwardListCount() || -index > backListCount())
104 int BackForwardListChromium::backListCount()
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardList.cpp 47 return toImpl(listRef)->backListCount();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardList.h 52 int backListCount() const;
InjectedBundleBackForwardList.cpp 49 int InjectedBundleBackForwardList::backListCount() const
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.h 136 @method backListCount
140 - (int)backListCount;
WebBackForwardList.mm 306 - (int)backListCount
308 return core(self)->backListCount();
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardList.cpp 61 return toImpl(listRef)->backListCount();
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.h 63 int backListCount() const;
qwkhistory.cpp 112 int QWKHistory::backListCount() const
124 return backListCount() + forwardListCount();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.cpp 185 int WebBackForwardListProxy::backListCount()
190 int backListCount = 0;
191 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardBackListCount(), Messages::WebPageProxy::BackForwardBackListCount::Reply(backListCount), m_page->pageID()))
194 return backListCount;
WebBackForwardListProxy.h 57 virtual int backListCount();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebBackForwardList.idl 144 @method backListCount
147 - (int)backListCount;
149 HRESULT backListCount([out, retval] int* count);
  /external/webkit/Source/WebKit/win/
WebBackForwardList.h 90 virtual HRESULT STDMETHODCALLTYPE backListCount(
WebBackForwardList.cpp 252 HRESULT STDMETHODCALLTYPE WebBackForwardList::backListCount(
255 *count = m_backForwardList->backListCount();
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.h 74 int backListCount();
WebBackForwardList.cpp 160 int WebBackForwardList::backListCount()
178 unsigned backListSize = static_cast<unsigned>(backListCount());
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.cpp 139 if (core->backListCount() < 1)
338 int limit = core->backListCount();
378 return core->backListCount();
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.cpp 348 return d->lst->backListCount() > 0;
436 return d->lst->backListCount();
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 361 return backForwardList->backListCount();
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 662 int backListCount;
663 if (FAILED(bfList->backListCount(&backListCount)))
666 for (int i = -1; i >= -backListCount; --i) {
    [all...]

Completed in 476 milliseconds

1 2