Home
last modified time | relevance | path

Searched refs:otherItem (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebCore/history/
DHistoryItem.cpp527 void HistoryItem::mergeAutoCompleteHints(HistoryItem* otherItem) in mergeAutoCompleteHints() argument
532 ASSERT(otherItem); in mergeAutoCompleteHints()
533 if (otherItem != this) in mergeAutoCompleteHints()
534 m_visitCount += otherItem->m_visitCount; in mergeAutoCompleteHints()
DHistoryItem.h121 void mergeAutoCompleteHints(HistoryItem* otherItem);
/external/webkit/WebKit/mac/History/
DWebHistoryItemInternal.h52 - (void)_mergeAutoCompleteHints:(WebHistoryItem *)otherItem;
DWebHistoryItem.mm337 - (void)_mergeAutoCompleteHints:(WebHistoryItem *)otherItem
339 ASSERT_ARG(otherItem, otherItem);
340 core(_private)->mergeAutoCompleteHints(core(otherItem->_private));
/external/webkit/WebKit/win/
DWebHistoryItem.cpp318 HRESULT STDMETHODCALLTYPE WebHistoryItem::mergeAutoCompleteHints(IWebHistoryItem* otherItem) in mergeAutoCompleteHints() argument
320 if (!otherItem) in mergeAutoCompleteHints()
323 COMPtr<WebHistoryItem> otherWebHistoryItem(Query, otherItem); in mergeAutoCompleteHints()
DWebHistoryItem.h90 virtual HRESULT STDMETHODCALLTYPE mergeAutoCompleteHints(IWebHistoryItem* otherItem);
/external/webkit/WebKit/win/Interfaces/
DIWebHistoryItemPrivate.idl47 HRESULT mergeAutoCompleteHints([in] IWebHistoryItem* otherItem);