Searched defs:hasPendingResource (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGDocumentExtensions.cpp179 bool SVGDocumentExtensions::hasPendingResource(const AtomicString& id) const function in class:blink::SVGDocumentExtensions
209 if (!hasPendingResource(id))
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGResources.cpp178 static inline RenderSVGResourceContainer* paintingResourceFromSVGPaint(TreeScope& treeScope, const SVGPaintType& paintType, const String& paintUri, AtomicString& id, bool& hasPendingResource) argument
186 hasPendingResource = true;
276 bool hasPendingResource = false; local
278 RenderSVGResourceContainer* resource = paintingResourceFromSVGPaint(treeScope, style.fillPaintType(), style.fillPaintUri(), id, hasPendingResource);
279 if (!ensureResources(resources)->setFill(resource) && hasPendingResource) {
285 bool hasPendingResource = false; local
287 RenderSVGResourceContainer* resource = paintingResourceFromSVGPaint(treeScope, style.strokePaintType(), style.strokePaintUri(), id, hasPendingResource);
288 if (!ensureResources(resources)->setStroke(resource) && hasPendingResource) {

Completed in 78 milliseconds