Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableSVGPaint.cpp39 …if (paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR && svgPaint->paintType() == SVGPaint::SVG_PAIN… in interpolateTo()
49 …if (paintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR || svgPaint->paintType() != SVGPaint::SVG_PAIN… in addWith()
59 return paintType() == svgPaint->paintType() in equalTo()
DAnimatableValueTestHelper.cpp129 if (animSVGPaint.paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR) in PrintTo()
131 else if (animSVGPaint.paintType() == SVGPaint::SVG_PAINTTYPE_URI) in PrintTo()
134 *os << animSVGPaint.paintType(); in PrintTo()
DAnimatableSVGPaint.h51 SVGPaint::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.cpp166 || stroke->paintType != other->stroke->paintType in diff()
197 if (fill->paintType != other->fill->paintType || fill->paintColor != other->fill->paintColor in diff()
DSVGRenderStyle.h156 if (!(fill->paintType == type))
157 fill.access()->paintType = type;
182 if (!(stroke->paintType == type))
183 stroke.access()->paintType = type;
322 const SVGPaint::SVGPaintType& fillPaintType() const { return fill->paintType; } in fillPaintType()
326 const SVGPaint::SVGPaintType& strokePaintType() const { return stroke->paintType; } in strokePaintType()
DSVGRenderStyleDefs.h123 SVGPaint::SVGPaintType paintType; variable
153 SVGPaint::SVGPaintType paintType; variable
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGPaint.cpp29 static inline SVGColor::SVGColorType colorTypeForPaintType(const SVGPaint::SVGPaintType& paintType) in colorTypeForPaintType() argument
31 switch (paintType) { in colorTypeForPaintType()
52 SVGPaint::SVGPaint(const SVGPaintType& paintType, const String& uri) in SVGPaint() argument
53 : SVGColor(SVGPaintClass, colorTypeForPaintType(paintType)) in SVGPaint()
54 , m_paintType(paintType) in SVGPaint()
DSVGPaint.h89 const SVGPaintType& paintType() const { return m_paintType; } in paintType() function
93 …void setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const String& i…
DSVGPaint.idl38 readonly attribute unsigned short paintType;
42 …[StrictTypeChecking, RaisesException] void setPaint(unsigned short paintType, DOMString uri, DOMSt…
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResource.cpp80 …SVGPaint::SVGPaintType paintType = applyToFill ? svgStyle->fillPaintType() : svgStyle->strokePaint… in requestPaintingResource() local
81 if (paintType == SVGPaint::SVG_PAINTTYPE_NONE) in requestPaintingResource()
85 switch (paintType) { in requestPaintingResource()
111 if (paintType < SVGPaint::SVG_PAINTTYPE_URI_NONE) { in requestPaintingResource()
122 …if (paintType == SVGPaint::SVG_PAINTTYPE_URI_NONE || !inheritColorFromParentStyleIfNeeded(object, … in requestPaintingResource()
DSVGResources.cpp155 …gResourceFromSVGPaint(Document& document, const SVGPaint::SVGPaintType& paintType, const String& p… in paintingResourceFromSVGPaint() argument
157 … if (paintType != SVGPaint::SVG_PAINTTYPE_URI && paintType != SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR) in paintingResourceFromSVGPaint()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSVGCSSComputedStyleDeclaration.cpp86 …if (paint->paintType() == SVGPaint::SVG_PAINTTYPE_CURRENTCOLOR || paint->paintType() == SVGPaint::… in adjustSVGPaintForCurrentColor()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DAnimatedStyleBuilder.cpp332 … style->accessSVGStyle()->setFillPaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri()); in applyProperty()
460 …style->accessSVGStyle()->setStrokePaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri()); in applyProperty()
DStyleBuilderCustom.cpp2088 …svgStyle->setFillPaint(svgPaint->paintType(), colorFromSVGColorCSSValue(svgPaint, state.style()->c… in oldApplyProperty()
2106 …svgStyle->setStrokePaint(svgPaint->paintType(), colorFromSVGColorCSSValue(svgPaint, state.style()-… in oldApplyProperty()