Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/history/
DHistoryItem.cpp551 bool HistoryItem::shouldDoSameDocumentNavigationTo(HistoryItem* otherItem) const in shouldDoSameDocumentNavigationTo()
553 if (this == otherItem) in shouldDoSameDocumentNavigationTo()
556 if (stateObject() || otherItem->stateObject()) in shouldDoSameDocumentNavigationTo()
557 return documentSequenceNumber() == otherItem->documentSequenceNumber(); in shouldDoSameDocumentNavigationTo()
559 …().hasFragmentIdentifier() || otherItem->url().hasFragmentIdentifier()) && equalIgnoringFragmentId… in shouldDoSameDocumentNavigationTo()
560 return documentSequenceNumber() == otherItem->documentSequenceNumber(); in shouldDoSameDocumentNavigationTo()
562 return hasSameDocumentTree(otherItem); in shouldDoSameDocumentNavigationTo()
567 bool HistoryItem::hasSameDocumentTree(HistoryItem* otherItem) const in hasSameDocumentTree()
569 if (documentSequenceNumber() != otherItem->documentSequenceNumber()) in hasSameDocumentTree()
572 if (children().size() != otherItem->children().size()) in hasSameDocumentTree()
[all …]
DHistoryItem.h123 void mergeAutoCompleteHints(HistoryItem* otherItem);
173 bool shouldDoSameDocumentNavigationTo(HistoryItem* otherItem) const;
174 bool hasSameFrames(HistoryItem* otherItem) const;
231 bool hasSameDocumentTree(HistoryItem* otherItem) const;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DOffsettedItem.java96 OffsettedItem otherItem = (OffsettedItem) other; in equals() local
98 ItemType otherType = otherItem.itemType(); in equals()
104 return (compareTo0(otherItem) == 0); in equals()
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstArray.java121 Constant otherItem = (Constant) other.get0(i); in compareTo() local
122 int compare = thisItem.compareTo(otherItem); in compareTo()
/external/webkit/Source/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/Source/WebKit/win/
DWebHistoryItem.cpp314 HRESULT STDMETHODCALLTYPE WebHistoryItem::mergeAutoCompleteHints(IWebHistoryItem* otherItem) in mergeAutoCompleteHints() argument
316 if (!otherItem) in mergeAutoCompleteHints()
319 COMPtr<WebHistoryItem> otherWebHistoryItem(Query, otherItem); in mergeAutoCompleteHints()
DWebHistoryItem.h90 virtual HRESULT STDMETHODCALLTYPE mergeAutoCompleteHints(IWebHistoryItem* otherItem);
/external/webkit/Source/WebKit/win/Interfaces/
DIWebHistoryItemPrivate.idl47 HRESULT mergeAutoCompleteHints([in] IWebHistoryItem* otherItem);