Home
last modified time | relevance | path

Searched refs:ResultMap (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DDOMPatchSupport.h60 typedef Vector<pair<Digest*, size_t> > ResultMap; typedef
64 …std::pair<ResultMap, ResultMap> diff(const Vector<OwnPtr<Digest> >& oldChildren, const Vector<OwnP…
71 void dumpMap(const ResultMap&, const String& name);
DDOMPatchSupport.cpp209 pair<DOMPatchSupport::ResultMap, DOMPatchSupport::ResultMap>
212 ResultMap newMap(newList.size()); in diff()
213 ResultMap oldMap(oldList.size()); in diff()
299 pair<ResultMap, ResultMap> resultMaps = diff(oldList, newList); in innerPatchChildren()
300 ResultMap& oldMap = resultMaps.first; in innerPatchChildren()
301 ResultMap& newMap = resultMaps.second; in innerPatchChildren()
507 void DOMPatchSupport::dumpMap(const ResultMap& map, const String& name) in dumpMap()