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

1 2

  /external/webkit/Source/WebCore/history/
BackForwardList.h 50 virtual HistoryItem* itemAtIndex(int) = 0;
68 HistoryItem* backItem() { return itemAtIndex(-1); }
69 HistoryItem* currentItem() { return itemAtIndex(0); }
70 HistoryItem* forwardItem() { return itemAtIndex(1); }
BackForwardController.h 60 HistoryItem* itemAtIndex(int);
66 HistoryItem* backItem() { return itemAtIndex(-1); }
67 HistoryItem* currentItem() { return itemAtIndex(0); }
68 HistoryItem* forwardItem() { return itemAtIndex(1); }
BackForwardController.cpp 92 HistoryItem* BackForwardController::itemAtIndex(int i)
94 return m_client->itemAtIndex(i);
BackForwardListImpl.h 59 virtual HistoryItem* itemAtIndex(int);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardList.cpp 39 PassRefPtr<InjectedBundleBackForwardListItem> InjectedBundleBackForwardList::itemAtIndex(int index) const
46 return InjectedBundleBackForwardListItem::create(page->backForward()->itemAtIndex(index));
InjectedBundleBackForwardList.h 51 PassRefPtr<InjectedBundleBackForwardListItem> itemAtIndex(int) const;
  /external/webkit/Source/WebKit/chromium/src/
BackForwardListChromium.h 53 virtual WebCore::HistoryItem* itemAtIndex(int index);
63 // The last history item that was accessed via itemAtIndex(). We keep track
BackForwardListChromium.cpp 79 HistoryItem* BackForwardListChromium::itemAtIndex(int index)
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardList.cpp 42 return toAPI(toImpl(listRef)->itemAtIndex(index).leakRef());
  /external/webkit/Source/WebCore/platform/
ContextMenu.h 65 ContextMenuItem* itemAtIndex(unsigned index) { return &m_items[index]; }
78 ContextMenuItem* itemAtIndex(unsigned, const PlatformMenuDescription);
  /external/webkit/Source/WebCore/platform/brew/
ContextMenuBrew.cpp 78 ContextMenuItem* ContextMenu::itemAtIndex(unsigned index, const PlatformMenuDescription platformDescription)
  /external/webkit/Source/WebCore/platform/chromium/
ContextMenuChromium.cpp 75 ContextMenuItem* ContextMenu::itemAtIndex(unsigned index, const PlatformMenuDescription platformDescription)
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.h 157 @method itemAtIndex:
162 - (WebHistoryItem *)itemAtIndex:(int)index;
WebBackForwardList.mm 316 - (WebHistoryItem *)itemAtIndex:(int)index
318 return [[kit(core(self)->itemAtIndex(index)) retain] autorelease];
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardList.cpp 56 return toAPI(toImpl(listRef)->itemAtIndex(index));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.h 56 virtual WebCore::HistoryItem* itemAtIndex(int);
WebBackForwardListProxy.cpp 170 HistoryItem* WebBackForwardListProxy::itemAtIndex(int itemIndex)
  /external/webkit/Source/WebKit/win/Interfaces/
IWebBackForwardList.idl 168 @method itemAtIndex:
172 - (WebHistoryItem *)itemAtIndex:(int)index;
174 HRESULT itemAtIndex([in] int index, [out, retval] IWebHistoryItem** item);
  /external/webkit/Source/WebKit/win/
WebBackForwardList.h 100 virtual HRESULT STDMETHODCALLTYPE itemAtIndex(
WebBackForwardList.cpp 279 HRESULT STDMETHODCALLTYPE WebBackForwardList::itemAtIndex(
286 HistoryItem* historyItem = m_backForwardList->itemAtIndex(index);
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.h 69 WebBackForwardListItem* itemAtIndex(int);
  /external/webkit/Tools/WebKitLauncher/
WebKitNightlyEnablerSparkle.m 142 NSMenu *applicationSubmenu = [[[NSApp mainMenu] itemAtIndex:0] submenu];
145 if ([[applicationSubmenu itemAtIndex:i] isSeparatorItem])
  /external/webkit/Tools/DumpRenderTree/mac/
WorkQueueItemMac.mm 94 [[mainFrame webView] goToBackForwardItem:[bfList itemAtIndex:m_howFar]];
  /external/webkit/Tools/DumpRenderTree/win/
WorkQueueItemWin.cpp 163 if (FAILED(bfList->itemAtIndex(m_howFar, &item)))
  /external/webkit/Source/WebCore/platform/mac/
ContextMenuItemMac.mm 40 [itemsArray addObject:[menu itemAtIndex:i]];

Completed in 1891 milliseconds

1 2