Home
last modified time | relevance | path

Searched refs:markForInvalidation (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGResourceMarker.cpp60 void RenderSVGResourceMarker::removeAllClientsFromCache(bool markForInvalidation) in removeAllClientsFromCache() argument
62 …markAllClientsForInvalidation(markForInvalidation ? LayoutAndBoundariesInvalidation : ParentOnlyIn… in removeAllClientsFromCache()
65 void RenderSVGResourceMarker::removeClientFromCache(RenderObject* client, bool markForInvalidation) in removeClientFromCache() argument
68 …markClientForInvalidation(client, markForInvalidation ? BoundariesInvalidation : ParentOnlyInvalid… in removeClientFromCache()
DRenderSVGResourceContainer.cpp94 bool markForInvalidation = mode != ParentOnlyInvalidation; in markAllClientsForInvalidation() local
100 client->toRenderSVGResourceContainer()->removeAllClientsFromCache(markForInvalidation); in markAllClientsForInvalidation()
104 if (markForInvalidation) in markAllClientsForInvalidation()
114 … current->toRenderSVGResourceContainer()->removeAllClientsFromCache(markForInvalidation); in markAllClientsForInvalidation()
DSVGResources.cpp289 void SVGResources::removeClientFromCache(RenderObject* object, bool markForInvalidation) const in removeClientFromCache()
298 m_linkedResource->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
304 m_clipperFilterMaskerData->clipper->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
307 m_clipperFilterMaskerData->filter->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
310 m_clipperFilterMaskerData->masker->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
315 m_markerData->markerStart->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
317 m_markerData->markerMid->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
319 m_markerData->markerEnd->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
324 m_fillStrokeData->fill->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
326 m_fillStrokeData->stroke->removeClientFromCache(object, markForInvalidation); in removeClientFromCache()
DRenderSVGResourceMasker.h48 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
49 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
DRenderSVGResourceClipper.h51 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
52 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
DRenderSVGResourceGradient.h49 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
50 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
DRenderSVGResourcePattern.h51 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
52 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
DRenderSVGResourceMasker.cpp62 void RenderSVGResourceMasker::removeAllClientsFromCache(bool markForInvalidation) in removeAllClientsFromCache() argument
70 …markAllClientsForInvalidation(markForInvalidation ? LayoutAndBoundariesInvalidation : ParentOnlyIn… in removeAllClientsFromCache()
73 void RenderSVGResourceMasker::removeClientFromCache(RenderObject* client, bool markForInvalidation) in removeClientFromCache() argument
80 …markClientForInvalidation(client, markForInvalidation ? BoundariesInvalidation : ParentOnlyInvalid… in removeClientFromCache()
DRenderSVGResource.h60 virtual void removeAllClientsFromCache(bool markForInvalidation = true) = 0;
61 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true) = 0;
DRenderSVGResourceMarker.h43 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
44 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
DRenderSVGResourceFilter.h71 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
72 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
DRenderSVGResourceGradient.cpp55 void RenderSVGResourceGradient::removeAllClientsFromCache(bool markForInvalidation) in removeAllClientsFromCache() argument
63 … markAllClientsForInvalidation(markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidation); in removeAllClientsFromCache()
66 …id RenderSVGResourceGradient::removeClientFromCache(RenderObject* client, bool markForInvalidation) in removeClientFromCache() argument
73 …markClientForInvalidation(client, markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidati… in removeClientFromCache()
DRenderSVGResourcePattern.cpp52 void RenderSVGResourcePattern::removeAllClientsFromCache(bool markForInvalidation) in removeAllClientsFromCache() argument
60 … markAllClientsForInvalidation(markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidation); in removeAllClientsFromCache()
63 void RenderSVGResourcePattern::removeClientFromCache(RenderObject* client, bool markForInvalidation) in removeClientFromCache() argument
70 …markClientForInvalidation(client, markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidati… in removeClientFromCache()
DRenderSVGResourceFilter.cpp72 void RenderSVGResourceFilter::removeAllClientsFromCache(bool markForInvalidation) in removeAllClientsFromCache() argument
79 …markAllClientsForInvalidation(markForInvalidation ? LayoutAndBoundariesInvalidation : ParentOnlyIn… in removeAllClientsFromCache()
82 void RenderSVGResourceFilter::removeClientFromCache(RenderObject* client, bool markForInvalidation) in removeClientFromCache() argument
93 …markClientForInvalidation(client, markForInvalidation ? BoundariesInvalidation : ParentOnlyInvalid… in removeClientFromCache()
DRenderSVGResourceClipper.cpp68 void RenderSVGResourceClipper::removeAllClientsFromCache(bool markForInvalidation) in removeAllClientsFromCache() argument
79 …markAllClientsForInvalidation(markForInvalidation ? LayoutAndBoundariesInvalidation : ParentOnlyIn… in removeAllClientsFromCache()
82 void RenderSVGResourceClipper::removeClientFromCache(RenderObject* client, bool markForInvalidation) in removeClientFromCache() argument
91 …markClientForInvalidation(client, markForInvalidation ? BoundariesInvalidation : ParentOnlyInvalid… in removeClientFromCache()
DSVGResources.h68 void removeClientFromCache(RenderObject*, bool markForInvalidation = true) const;
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0679295 …Add a boolean "markForInvalidation" parameter, that controls wheter the clients should be marked f…