Searched refs:spreadMethod (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGGradientElement.idl37 readonly attribute SVGAnimatedEnumeration spreadMethod;
H A DGradientAttributes.h38 SVGSpreadMethodType spreadMethod() const { return static_cast<SVGSpreadMethodType>(m_spreadMethod); } function in struct:blink::GradientAttributes
H A DSVGGradientElement.h57 SVGAnimatedEnumeration<SVGSpreadMethodType>* spreadMethod() { return m_spreadMethod.get(); } function in class:blink::SVGGradientElement
H A DSVGLinearGradientElement.cpp108 if (!attributes.hasSpreadMethod() && element->spreadMethod()->isSpecified())
109 attributes.setSpreadMethod(element->spreadMethod()->currentValue()->enumValue());
H A DSVGRadialGradientElement.cpp122 if (!attributes.hasSpreadMethod() && element->spreadMethod()->isSpecified())
123 attributes.setSpreadMethod(element->spreadMethod()->currentValue()->enumValue());
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceLinearGradient.cpp59 gradientData->gradient->setSpreadMethod(platformSpreadMethodFromSVGType(m_attributes.spreadMethod()));
H A DRenderSVGResourceRadialGradient.cpp74 gradientData->gradient->setSpreadMethod(platformSpreadMethodFromSVGType(m_attributes.spreadMethod()));
H A DSVGRenderTreeAsText.cpp481 static inline void writeCommonGradientProperties(TextStream& ts, SVGSpreadMethodType spreadMethod, const AffineTransform& gradientTransform, SVGUnitTypes::SVGUnitType gradientUnits) argument
485 if (spreadMethod != SVGSpreadMethodPad)
486 ts << " [spreadMethod=" << spreadMethod << "]"; local
555 writeCommonGradientProperties(ts, attributes.spreadMethod(), attributes.gradientTransform(), attributes.gradientUnits());
565 writeCommonGradientProperties(ts, attributes.spreadMethod(), attributes.gradientTransform(), attributes.gradientUnits());
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGradient.cpp114 void Gradient::setSpreadMethod(GradientSpreadMethod spreadMethod) argument
119 if (m_spreadMethod == spreadMethod)
122 m_spreadMethod = spreadMethod;
H A DGradient.h118 GradientSpreadMethod spreadMethod() { return m_spreadMethod; } function in class:blink::Gradient

Completed in 476 milliseconds