Searched refs:itemAtIndex (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/history/
H A DBackForwardList.h50 virtual HistoryItem* itemAtIndex(int) = 0;
60 HistoryItem* backItem() { return itemAtIndex(-1); }
61 HistoryItem* currentItem() { return itemAtIndex(0); }
62 HistoryItem* forwardItem() { return itemAtIndex(1); }
H A DBackForwardController.h61 HistoryItem* itemAtIndex(int);
67 HistoryItem* backItem() { return itemAtIndex(-1); }
68 HistoryItem* currentItem() { return itemAtIndex(0); }
69 HistoryItem* forwardItem() { return itemAtIndex(1); }
H A DBackForwardController.cpp97 HistoryItem* BackForwardController::itemAtIndex(int i) function in class:WebCore::BackForwardController
99 return m_client->itemAtIndex(i);
H A DBackForwardListImpl.h59 virtual HistoryItem* itemAtIndex(int);
H A DBackForwardListImpl.cpp216 HistoryItem* BackForwardListImpl::itemAtIndex(int index)
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundleBackForwardList.cpp39 PassRefPtr<InjectedBundleBackForwardListItem> InjectedBundleBackForwardList::itemAtIndex(int index) const function in class:WebKit::InjectedBundleBackForwardList
46 return InjectedBundleBackForwardListItem::create(page->backForward()->itemAtIndex(index));
H A DInjectedBundleBackForwardList.h49 PassRefPtr<InjectedBundleBackForwardListItem> itemAtIndex(int) const;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/
H A DWKBundleBackForwardList.cpp42 return toAPI(toImpl(listRef)->itemAtIndex(index).leakRef());
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebBackForwardList.h151 @method itemAtIndex:
156 - (WebHistoryItem *)itemAtIndex:(int)index;
H A DWebBackForwardList.mm316 - (WebHistoryItem *)itemAtIndex:(int)index
318 return [[kit(core(self)->itemAtIndex(index)) retain] autorelease];
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DContextMenu.h63 ContextMenuItem* itemAtIndex(unsigned index) { return &m_items[index]; } function in class:WebCore::ContextMenu
76 ContextMenuItem* itemAtIndex(unsigned, const PlatformMenuDescription);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DBackForwardListBlackBerry.cpp79 HistoryItem* BackForwardListBlackBerry::itemAtIndex(int index) function in class:WebCore::BackForwardListBlackBerry
81 return m_impl->itemAtIndex(index);
H A DBackForwardListBlackBerry.h52 virtual WebCore::HistoryItem* itemAtIndex(int);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKBackForwardList.cpp56 return toAPI(toImpl(listRef)->itemAtIndex(index));
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebBackForwardListProxy.h57 virtual WebCore::HistoryItem* itemAtIndex(int);
H A DWebBackForwardListProxy.cpp177 HistoryItem* WebBackForwardListProxy::itemAtIndex(int itemIndex) function in class:WebKit::WebBackForwardListProxy
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebBackForwardList.idl168 @method itemAtIndex:
172 - (WebHistoryItem *)itemAtIndex:(int)index;
174 HRESULT itemAtIndex([in] int index, [out, retval] IWebHistoryItem** item);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebBackForwardList.h67 WebBackForwardListItem* itemAtIndex(int);
H A DWebBackForwardList.cpp172 WebBackForwardListItem* WebBackForwardList::itemAtIndex(int index) function in class:WebKit::WebBackForwardList
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebBackForwardList.h100 virtual HRESULT STDMETHODCALLTYPE itemAtIndex(
H A DWebBackForwardList.cpp279 HRESULT STDMETHODCALLTYPE WebBackForwardList::itemAtIndex( function in class:WebBackForwardList
286 HistoryItem* historyItem = m_backForwardList->itemAtIndex(index);
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DFilteringArrayController.m222 item = [ menu itemAtIndex: index ];
252 [ self changeSearchCategory: [ menu itemAtIndex: 0 ] ];
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitBackForwardList.cpp210 return webkitBackForwardListGetOrCreateItem(backForwardList, backForwardList->priv->backForwardItems->itemAtIndex(index));
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DContextMenuItemMac.mm40 [itemsArray addObject:[menu itemAtIndex:i]];
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DPopupMenuMac.mm142 if (index == -1 && numItems == 2 && !m_client->shouldPopOver() && ![[m_popup itemAtIndex:1] isEnabled])

Completed in 205 milliseconds

12