SVGPendingElements  219 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     OwnPtr<SVGDocumentExtensions::SVGPendingElements> clients(extensions.removePendingResource(m_id));
SVGPendingElements  225 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     const SVGDocumentExtensions::SVGPendingElements::const_iterator end = clients->end();
SVGPendingElements  226 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     for (SVGDocumentExtensions::SVGPendingElements::const_iterator it = clients->begin(); it != end; ++it) {
SVGPendingElements  171 Source/core/svg/SVGDocumentExtensions.cpp     HashMap<AtomicString, OwnPtr<SVGPendingElements> >::AddResult result = m_pendingResources.add(id, nullptr);
SVGPendingElements  173 Source/core/svg/SVGDocumentExtensions.cpp         result.storedValue->value = adoptPtr(new SVGPendingElements);
SVGPendingElements  194 Source/core/svg/SVGDocumentExtensions.cpp     HashMap<AtomicString, OwnPtr<SVGPendingElements> >::const_iterator end = m_pendingResources.end();
SVGPendingElements  195 Source/core/svg/SVGDocumentExtensions.cpp     for (HashMap<AtomicString, OwnPtr<SVGPendingElements> >::const_iterator it = m_pendingResources.begin(); it != end; ++it) {
SVGPendingElements  196 Source/core/svg/SVGDocumentExtensions.cpp         SVGPendingElements* elements = it->value.get();
SVGPendingElements  228 Source/core/svg/SVGDocumentExtensions.cpp         HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator end = m_pendingResources.end();
SVGPendingElements  229 Source/core/svg/SVGDocumentExtensions.cpp         for (HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator it = m_pendingResources.begin(); it != end; ++it) {
SVGPendingElements  230 Source/core/svg/SVGDocumentExtensions.cpp             SVGPendingElements* elements = it->value.get();
SVGPendingElements  250 Source/core/svg/SVGDocumentExtensions.cpp         HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator end = m_pendingResourcesForRemoval.end();
SVGPendingElements  251 Source/core/svg/SVGDocumentExtensions.cpp         for (HashMap<AtomicString, OwnPtr<SVGPendingElements> >::iterator it = m_pendingResourcesForRemoval.begin(); it != end; ++it) {
SVGPendingElements  252 Source/core/svg/SVGDocumentExtensions.cpp             SVGPendingElements* elements = it->value.get();
SVGPendingElements  268 Source/core/svg/SVGDocumentExtensions.cpp PassOwnPtr<SVGDocumentExtensions::SVGPendingElements> SVGDocumentExtensions::removePendingResource(const AtomicString& id)
SVGPendingElements  274 Source/core/svg/SVGDocumentExtensions.cpp PassOwnPtr<SVGDocumentExtensions::SVGPendingElements> SVGDocumentExtensions::removePendingResourceForRemoval(const AtomicString& id)
SVGPendingElements  287 Source/core/svg/SVGDocumentExtensions.cpp     OwnPtr<SVGPendingElements> existing = m_pendingResources.take(id);
SVGPendingElements  297 Source/core/svg/SVGDocumentExtensions.cpp     SVGPendingElements* resourceSet = m_pendingResourcesForRemoval.get(id);
SVGPendingElements  301 Source/core/svg/SVGDocumentExtensions.cpp     SVGPendingElements::iterator firstElement = resourceSet->begin();
SVGPendingElements   98 Source/core/svg/SVGDocumentExtensions.h     HashMap<AtomicString, OwnPtr<SVGPendingElements> > m_pendingResources; // Resources that are pending.
SVGPendingElements   99 Source/core/svg/SVGDocumentExtensions.h     HashMap<AtomicString, OwnPtr<SVGPendingElements> > m_pendingResourcesForRemoval; // Resources that are pending and scheduled for removal.
SVGPendingElements  117 Source/core/svg/SVGDocumentExtensions.h     PassOwnPtr<SVGPendingElements> removePendingResource(const AtomicString& id);
SVGPendingElements  126 Source/core/svg/SVGDocumentExtensions.h     PassOwnPtr<SVGPendingElements> removePendingResourceForRemoval(const AtomicString&);