Home
last modified time | relevance | path

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

/external/webkit/WebCore/history/
DHistoryItem.cpp504 void HistoryItem::mergeAutoCompleteHints(HistoryItem* otherItem) in mergeAutoCompleteHints() argument
509 ASSERT(otherItem); in mergeAutoCompleteHints()
510 if (otherItem != this) in mergeAutoCompleteHints()
511 m_visitCount += otherItem->m_visitCount; in mergeAutoCompleteHints()
DHistoryItem.h113 void mergeAutoCompleteHints(HistoryItem* otherItem);
/external/webkit/WebKit/mac/History/
DWebHistoryItemInternal.h52 - (void)_mergeAutoCompleteHints:(WebHistoryItem *)otherItem;
DWebHistoryItem.mm333 - (void)_mergeAutoCompleteHints:(WebHistoryItem *)otherItem
335 ASSERT_ARG(otherItem, otherItem);
336 core(_private)->mergeAutoCompleteHints(core(otherItem->_private));
/external/webkit/WebKit/win/
DWebHistoryItem.cpp317 HRESULT STDMETHODCALLTYPE WebHistoryItem::mergeAutoCompleteHints(IWebHistoryItem* otherItem) in mergeAutoCompleteHints() argument
319 if (!otherItem) in mergeAutoCompleteHints()
322 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);