/external/webkit/WebKit/chromium/src/ |
D | BackForwardListClientImpl.cpp | 93 if (!m_webView->client() || index > forwardListCount() || -index > backListCount()) in itemAtIndex() 113 int BackForwardListClientImpl::backListCount() in backListCount() function in WebKit::BackForwardListClientImpl
|
D | BackForwardListClientImpl.h | 55 virtual int backListCount();
|
/external/webkit/WebCore/history/ |
D | BackForwardListChromium.cpp | 109 int BackForwardList::backListCount() in backListCount() function in WebCore::BackForwardList 111 return m_client->backListCount(); in backListCount()
|
D | BackForwardList.h | 57 virtual int backListCount() = 0; 92 int backListCount();
|
D | BackForwardList.cpp | 212 int BackForwardList::backListCount() in backListCount() function in WebCore::BackForwardList
|
/external/webkit/WebCore/page/ |
D | Page.cpp | 283 if (distance < 0 && -distance <= m_backForwardList->backListCount()) in canGoBackOrForward() 300 int backListCount = m_backForwardList->backListCount(); in goBackOrForward() local 301 if (backListCount > 0) in goBackOrForward() 302 item = m_backForwardList->itemAtIndex(-backListCount); in goBackOrForward() 336 return m_backForwardList->backListCount() + 1 + m_backForwardList->forwardListCount(); in getHistoryLength()
|
/external/webkit/WebKit/win/ |
D | WebBackForwardList.cpp | 250 HRESULT STDMETHODCALLTYPE WebBackForwardList::backListCount( in backListCount() function in WebBackForwardList 253 *count = m_backForwardList->backListCount(); in backListCount()
|
D | WebBackForwardList.h | 90 virtual HRESULT STDMETHODCALLTYPE backListCount(
|
D | WebView.cpp | 5034 for (int i = -otherBackForwardList->backListCount(); i <= lastItemIndex; ++i) { in loadBackForwardListFromOtherView()
|
D | ChangeLog-2009-06-16 | 18450 (WebBackForwardList::backListCount): 23335 (WebBackForwardList::backListCount):
|
/external/webkit/WebKit/win/Interfaces/ |
D | IWebBackForwardList.idl | 144 @method backListCount 147 - (int)backListCount; 149 HRESULT backListCount([out, retval] int* count);
|
/external/webkit/WebKit/mac/History/ |
D | WebBackForwardList.h | 140 - (int)backListCount;
|
D | WebBackForwardList.mm | 302 - (int)backListCount 304 return core(self)->backListCount();
|
/external/webkit/WebKit/qt/Api/ |
D | qwebhistory.cpp | 344 return d->lst->backListCount() > 0; in canGoBack() 435 return d->lst->backListCount(); in currentItemIndex()
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | DumpRenderTree.cpp | 596 int backListCount; in dumpBackForwardList() local 597 if (FAILED(bfList->backListCount(&backListCount))) in dumpBackForwardList() 600 for (int i = -1; i >= -backListCount; --i) { in dumpBackForwardList()
|
/external/webkit/WebKitTools/DumpRenderTree/gtk/ |
D | DumpRenderTree.cpp | 275 gint backListCount = webkit_web_back_forward_list_get_back_length(bfList); in dumpBackForwardListForWebView() local 276 for (int i = -1; i >= -(backListCount); i--) { in dumpBackForwardListForWebView()
|
/external/webkit/WebKit/gtk/webkit/ |
D | webkitwebbackforwardlist.cpp | 358 return backForwardList->backListCount(); in webkit_web_back_forward_list_get_back_length()
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
D | WebFrameLoaderClient.mm | 308 int backListCount = [history backListCount]; 309 for (int backIndex = 0; backIndex <= backListCount && !originalURL; backIndex++) {
|
/external/webkit/WebKit/android/WebCoreSupport/ |
D | FrameLoaderClientAndroid.cpp | 837 m_webFrame->updateHistoryIndex(list->backListCount()); in dispatchDidChangeBackForwardIndex()
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | DumpRenderTree.mm | 1002 for (int i = -1; i >= -[bfList backListCount]; i--) {
|
/external/webkit/WebKit/mac/ |
D | WebKit.order | 860 -[WebBackForwardList backListCount]
|
D | ChangeLog-2006-02-09 | 29162 (-[WebBackForwardList backListCount]): 31290 Handle edge cases by checking backListCount and forwardListCount at this level. 32735 * History.subproj/WebBackForwardList.h: Added backListCount and entryAtIndex:. 32737 (-[WebBackForwardList backListCount]): Added. 32740 (-[WebBridge historyLength]): Added. Calls backListCount.
|
D | ChangeLog-2007-10-14 | 2051 was incorrect. Additionally I found a loop index bug with backListCount and fixed it. 8999 (-[WebBackForwardList backListCount]): 20560 (WebBackForwardList::backListCount):
|
/external/webkit/WebKit/mac/WebView/ |
D | WebView.mm | 1196 for (int i = -otherBackForwardList->backListCount(); i <= lastItemIndex; ++i) {
|
/external/webkit/WebKit/chromium/ |
D | ChangeLog | 5036 (WebKit::BackForwardListClientImpl::backListCount):
|