SVG_PAINTTYPE_RGBCOLOR   39 Source/core/animation/AnimatableSVGPaint.cpp     return paintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR || svgPaint->paintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR;
SVG_PAINTTYPE_RGBCOLOR   45 Source/core/animation/AnimatableSVGPaint.cpp     if (paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR && svgPaint->paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR) {
SVG_PAINTTYPE_RGBCOLOR   47 Source/core/animation/AnimatableSVGPaint.cpp         return AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, m_color.interpolateTo(svgPaint->m_color, fraction), String());
SVG_PAINTTYPE_RGBCOLOR   55 Source/core/animation/AnimatableSVGPaint.cpp     if (paintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR || svgPaint->paintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR) {
SVG_PAINTTYPE_RGBCOLOR   57 Source/core/animation/AnimatableSVGPaint.cpp         return AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, m_color.addWith(svgPaint->m_color), String());
SVG_PAINTTYPE_RGBCOLOR  127 Source/core/animation/AnimatableValueTestHelper.cpp     if (animSVGPaint.paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR)
SVG_PAINTTYPE_RGBCOLOR  123 Source/core/animation/AnimatableValueTestHelperTest.cpp         PrintToString(AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, Color(0xFFFF0000), "")));
SVG_PAINTTYPE_RGBCOLOR  128 Source/core/animation/css/CSSPropertyEquality.cpp             && (a.fillPaintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR || a.fillPaintColor() == b.fillPaintColor());
SVG_PAINTTYPE_RGBCOLOR  214 Source/core/animation/css/CSSPropertyEquality.cpp             && (a.strokePaintType() != SVGPaint::SVG_PAINTTYPE_RGBCOLOR || a.strokePaintColor() == b.strokePaintColor());
SVG_PAINTTYPE_RGBCOLOR 1396 Source/core/rendering/style/RenderStyle.h     void setFillPaintColor(const Color& c) { accessSVGStyle()->setFillPaint(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, c, ""); }
SVG_PAINTTYPE_RGBCOLOR 1402 Source/core/rendering/style/RenderStyle.h     void setStrokePaintColor(const Color& c) { accessSVGStyle()->setStrokePaint(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, c, ""); }
SVG_PAINTTYPE_RGBCOLOR   75 Source/core/rendering/style/SVGRenderStyle.h     static SVGPaint::SVGPaintType initialFillPaintType() { return SVGPaint::SVG_PAINTTYPE_RGBCOLOR; }
SVG_PAINTTYPE_RGBCOLOR   44 Source/core/rendering/svg/RenderSVGResource.cpp     if (paintType != SVGPaint::SVG_PAINTTYPE_RGBCOLOR && paintType != SVGPaint::SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR)
SVG_PAINTTYPE_RGBCOLOR   90 Source/core/rendering/svg/RenderSVGResource.cpp     case SVGPaint::SVG_PAINTTYPE_RGBCOLOR:
SVG_PAINTTYPE_RGBCOLOR   44 Source/core/svg/SVGPaint.cpp     case SVG_PAINTTYPE_RGBCOLOR:
SVG_PAINTTYPE_RGBCOLOR   67 Source/core/svg/SVGPaint.h         RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeRefCountedGarbageCollected(new SVGPaint(SVG_PAINTTYPE_RGBCOLOR));
SVG_PAINTTYPE_RGBCOLOR  109 Source/core/svg/SVGPaint.h     void setColor(const Color& color) { m_color = color; m_paintType = SVG_PAINTTYPE_RGBCOLOR; }