Searched refs:currentItem (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestwebbackforwardlist.c29 WebKitWebHistoryItem* currentItem; local
70 currentItem = webkit_web_back_forward_list_get_current_item(backForwardList);
71 g_object_ref(currentItem);
72 g_assert_cmpint(G_OBJECT(currentItem)->ref_count, ==, 2);
73 g_object_unref(currentItem);
74 g_assert_cmpint(G_OBJECT(currentItem)->ref_count, ==, 1);
115 WebKitWebHistoryItem* currentItem; local
159 currentItem = WEBKIT_WEB_HISTORY_ITEM(backList->data);
160 g_assert_cmpstr(webkit_web_history_item_get_uri(currentItem), ==, "http://example.com/3/");
161 g_assert_cmpstr(webkit_web_history_item_get_title(currentItem),
204 WebKitWebHistoryItem* currentItem; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/pwr_mgt/
H A DIOPMPowerSourceList.h52 IOPMPowerSource *nextInList(IOPMPowerSource *currentItem);
H A DIOPMinformeeList.h60 IOPMinformee * nextInList ( IOPMinformee * currentItem );
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOPMPowerSourceList.cpp89 IOPMPowerSource * IOPMPowerSourceList::nextInList(IOPMPowerSource *currentItem) argument
91 if ( currentItem != NULL ) {
92 return (currentItem->nextInList);
H A DIOPMinformeeList.cpp193 IOPMinformee * IOPMinformeeList::nextInList ( IOPMinformee * currentItem )
195 if ( currentItem != NULL ) {
196 return (currentItem->nextInList);
/macosx-10.9.5/WebCore-7537.78.1/history/
H A DBackForwardList.h61 HistoryItem* currentItem() { return itemAtIndex(0); } function in class:WebCore::BackForwardList
H A DBackForwardController.h68 HistoryItem* currentItem() { return itemAtIndex(0); } function in class:WebCore::BackForwardController
H A DBackForwardListImpl.h57 HistoryItem* currentItem();
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebBackForwardList.h86 @method currentItem
90 - (WebHistoryItem *)currentItem;
H A DWebBackForwardList.mm192 - (WebHistoryItem *)currentItem
194 return [[kit(core(self)->currentItem()) retain] autorelease];
275 if (entries[i] == backForwardList->currentItem()) {
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DBackForwardListBlackBerry.cpp131 HistoryItem* BackForwardListBlackBerry::currentItem() function in class:WebCore::BackForwardListBlackBerry
133 return m_impl->currentItem();
H A DBackForwardListBlackBerry.h42 HistoryItem* currentItem();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebBackForwardList.cpp151 WebBackForwardListItem* WebBackForwardList::currentItem() function in class:WebKit::WebBackForwardList
259 RefPtr<WebBackForwardListItem> currentItem = this->currentItem();
262 if (!currentItem) {
285 if (m_entries[i] && m_entries[i] != currentItem)
297 if (currentItem) {
299 m_entries[0] = currentItem.release();
H A DWebBackForwardList.h64 WebBackForwardListItem* currentItem();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKBackForwardList.cpp41 return toAPI(toImpl(listRef)->currentItem());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_back_forward_list.cpp52 EwkBackForwardListItem* EwkBackForwardList::currentItem() const function in class:EwkBackForwardList
64 const unsigned currentItem = WKBackForwardListGetCurrentItem(m_wkList.get()) ? 1 : 0; local
66 return WKBackForwardListGetBackListCount(m_wkList.get()) + WKBackForwardListGetForwardListCount(m_wkList.get()) + currentItem;
138 return list->currentItem();
H A Dewk_back_forward_list_private.h45 EwkBackForwardListItem* currentItem() const;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLCollection.cpp495 Node* currentItem = cachedItem();
496 ASSERT(currentItem);
501 while ((currentItem = itemBefore(currentItem))) {
505 setItemCache(currentItem, currentOffset, 0);
506 return currentItem;
515 currentItem = traverseChildNodeListForwardToOffset(offset, currentItem, currentOffset);
517 currentItem = traverseLiveNodeListForwardToOffset(offset, toElement(currentItem), currentOffse
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitBackForwardList.cpp161 return webkitBackForwardListGetOrCreateItem(backForwardList, backForwardList->priv->backForwardItems->currentItem());
224 guint currentItem = webkit_back_forward_list_get_current_item(backForwardList) ? 1 : 0; local
225 return priv->backForwardItems->backListCount() + priv->backForwardItems->forwardListCount() + currentItem;
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebBackForwardList.idl94 @method currentItem
97 - (WebHistoryItem *)currentItem;
99 HRESULT currentItem([out, retval] IWebHistoryItem** item);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DHistoryController.h75 HistoryItem* currentItem() const { return m_currentItem.get(); } function in class:WebCore::HistoryController
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_history.cpp151 WebCore::HistoryItem* currentItem = core->currentItem(); local
152 if (currentItem)
153 return ewk_history_item_new_from_core(currentItem);
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebhistory.cpp223 currentItem(), and an arbitrary item in the history can be made the current
272 RefPtr<WebCore::HistoryItem> current = lst->currentItem();
411 QWebHistoryItem QWebHistory::currentItem() const function in class:QWebHistory
413 WebCore::HistoryItem *i = d->lst->currentItem();
544 WebCore::HistoryItem* nullItem = d->lst->currentItem();
H A Dqwebhistory.h88 QWebHistoryItem currentItem() const;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebBackForwardList.h68 virtual HRESULT STDMETHODCALLTYPE currentItem(

Completed in 327 milliseconds

12