HomeSort by relevance Sort by last modified time
    Searched refs:SVGPendingElements (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocumentExtensions.h 46 typedef HashSet<Element*> SVGPendingElements;
91 HashMap<AtomicString, OwnPtr<SVGPendingElements> > m_pendingResources; // Resources that are pending.
92 HashMap<AtomicString, OwnPtr<SVGPendingElements> > m_pendingResourcesForRemoval; // Resources that are pending and scheduled for removal.
110 PassOwnPtr<SVGPendingElements> removePendingResource(const AtomicString& id);
117 PassOwnPtr<SVGPendingElements> removePendingResourceForRemoval(const AtomicString&);
SVGDocumentExtensions.cpp 151 HashMap<AtomicString, OwnPtr<SVGPendingElements> >::AddResult result = m_pendingResources.add(id, nullptr);
153 result.iterator->value = adoptPtr(new SVGPendingElements);
174 HashMap<AtomicString, OwnPtr<SVGPendingElements> >::const_iterator end = m_pendingResources.end();
175 for (HashMap<AtomicString, OwnPtr<SVGPendingElements> >::const_iterator it = m_pendingResources.begin(); it != end; ++it) {
176 SVGPendingElements* elements = it->value.get();
208 HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator end = m_pendingResources.end();
209 for (HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator it = m_pendingResources.begin(); it != end; ++it) {
210 SVGPendingElements* elements = it->value.get();
230 HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator end = m_pendingResourcesForRemoval.end();
231 for (HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator it = m_pendingResourcesForRemoval.begin(); it != end; ++it)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceContainer.cpp 219 OwnPtr<SVGDocumentExtensions::SVGPendingElements> clients(extensions->removePendingResource(m_id));
225 const SVGDocumentExtensions::SVGPendingElements::const_iterator end = clients->end();
226 for (SVGDocumentExtensions::SVGPendingElements::const_iterator it = clients->begin(); it != end; ++it) {

Completed in 459 milliseconds