Home
last modified time | relevance | path

Searched refs:paintType (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
DAnimatableSVGPaint.cpp39 … return (paintType() != SVG_PAINTTYPE_RGBCOLOR || svgPaint->paintType() != SVG_PAINTTYPE_RGBCOLOR) in usesDefaultInterpolationWith()
51 return create(paintType(), visitedLinkPaintType(), color, uri(), visitedLinkURI()); in interpolateTo()
52 …return create(svgPaint->paintType(), svgPaint->visitedLinkPaintType(), color, svgPaint->uri(), svg… in interpolateTo()
58 return paintType() == svgPaint->paintType() in equalTo()
DAnimatableSVGPaint.h57 SVGPaintType paintType() const { return m_type; }; in paintType() function
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DSVGRenderStyleDefs.cpp38 , paintType(SVGRenderStyle::initialFillPaintType()) in StyleFillData()
50 , paintType(other.paintType) in StyleFillData()
62 && paintType == other.paintType in operator ==()
76 , paintType(SVGRenderStyle::initialStrokePaintType()) in StyleStrokeData()
92 , paintType(other.paintType) in StyleStrokeData()
108 && paintType == other.paintType in operator ==()
DSVGRenderStyle.cpp168 || stroke->paintType != other->stroke->paintType in diffNeedsLayoutAndPaintInvalidation()
198 if (fill->paintType != other->fill->paintType in diffNeedsPaintInvalidation()
DSVGRenderStyle.h145 if (!(fill->paintType == type))
146 fill.access()->paintType = type;
171 if (!(stroke->paintType == type))
172 stroke.access()->paintType = type;
305 const SVGPaintType& fillPaintType() const { return fill->paintType; } in fillPaintType()
309 const SVGPaintType& strokePaintType() const { return stroke->paintType; } in strokePaintType()
DSVGRenderStyleDefs.h129 SVGPaintType paintType; variable
159 SVGPaintType paintType; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResource.cpp69 SVGPaintType paintType = applyToFill ? svgStyle.fillPaintType() : svgStyle.strokePaintType(); in requestPaintingResource() local
70 ASSERT(paintType != SVG_PAINTTYPE_NONE); in requestPaintingResource()
74 switch (paintType) { in requestPaintingResource()
99 if (paintType < SVG_PAINTTYPE_URI_NONE) { in requestPaintingResource()
113 if (paintType == SVG_PAINTTYPE_URI_NONE || !hasColor) in requestPaintingResource()
DSVGResources.cpp164 static inline bool svgPaintTypeHasURL(SVGPaintType paintType) in svgPaintTypeHasURL() argument
166 switch (paintType) { in svgPaintTypeHasURL()
178 … paintingResourceFromSVGPaint(TreeScope& treeScope, const SVGPaintType& paintType, const String& p… in paintingResourceFromSVGPaint() argument
180 if (!svgPaintTypeHasURL(paintType)) in paintingResourceFromSVGPaint()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSVGCSSComputedStyleDeclaration.cpp85 static PassRefPtrWillBeRawPtr<CSSValue> adjustSVGPaintForCurrentColor(SVGPaintType paintType, const… in adjustSVGPaintForCurrentColor() argument
87 if (paintType >= SVG_PAINTTYPE_URI_NONE) { in adjustSVGPaintForCurrentColor()
90 if (paintType == SVG_PAINTTYPE_URI_NONE) in adjustSVGPaintForCurrentColor()
92 else if (paintType == SVG_PAINTTYPE_URI_CURRENTCOLOR) in adjustSVGPaintForCurrentColor()
94 else if (paintType == SVG_PAINTTYPE_URI_RGBCOLOR) in adjustSVGPaintForCurrentColor()
98 if (paintType == SVG_PAINTTYPE_NONE) in adjustSVGPaintForCurrentColor()
100 if (paintType == SVG_PAINTTYPE_CURRENTCOLOR) in adjustSVGPaintForCurrentColor()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DAnimatedStyleBuilder.cpp355 …style->accessSVGStyle().setFillPaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri(), tr… in applyProperty()
487 …style->accessSVGStyle().setStrokePaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri(), … in applyProperty()