/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimatableSVGPaint.cpp | 39 …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()
|
D | AnimatableValueTestHelper.cpp | 129 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()
|
D | AnimatableSVGPaint.h | 51 SVGPaint::SVGPaintType paintType() const { return m_type; }; in paintType() function
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | SVGRenderStyleDefs.cpp | 38 , 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 ==()
|
D | SVGRenderStyle.cpp | 166 || stroke->paintType != other->stroke->paintType in diff() 197 if (fill->paintType != other->fill->paintType || fill->paintColor != other->fill->paintColor in diff()
|
D | SVGRenderStyle.h | 156 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()
|
D | SVGRenderStyleDefs.h | 123 SVGPaint::SVGPaintType paintType; variable 153 SVGPaint::SVGPaintType paintType; variable
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGPaint.cpp | 29 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()
|
D | SVGPaint.h | 89 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…
|
D | SVGPaint.idl | 38 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/ |
D | RenderSVGResource.cpp | 80 …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()
|
D | SVGResources.cpp | 155 …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/ |
D | SVGCSSComputedStyleDeclaration.cpp | 86 …if (paint->paintType() == SVGPaint::SVG_PAINTTYPE_CURRENTCOLOR || paint->paintType() == SVGPaint::… in adjustSVGPaintForCurrentColor()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | AnimatedStyleBuilder.cpp | 332 … style->accessSVGStyle()->setFillPaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri()); in applyProperty() 460 …style->accessSVGStyle()->setStrokePaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri()); in applyProperty()
|
D | StyleBuilderCustom.cpp | 2088 …svgStyle->setFillPaint(svgPaint->paintType(), colorFromSVGColorCSSValue(svgPaint, state.style()->c… in oldApplyProperty() 2106 …svgStyle->setStrokePaint(svgPaint->paintType(), colorFromSVGColorCSSValue(svgPaint, state.style()-… in oldApplyProperty()
|