Home | History | Annotate | Download | only in css

Lines Matching refs:gradientType

98     CSSGradientType gradientType() const { return m_gradientType; }
112 CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType)
115 , m_gradientType(gradientType)
120 CSSGradientValue(const CSSGradientValue& other, ClassType classType, CSSGradientType gradientType)
128 , m_gradientType(gradientType)
159 static PassRefPtrWillBeRawPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSLinearGradient)
161 return adoptRefWillBeNoop(new CSSLinearGradientValue(repeat, gradientType));
181 CSSLinearGradientValue(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSLinearGradient)
182 : CSSGradientValue(LinearGradientClass, repeat, gradientType)
187 : CSSGradientValue(other, LinearGradientClass, other.gradientType())
199 static PassRefPtrWillBeRawPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSRadialGradient)
201 return adoptRefWillBeNoop(new CSSRadialGradientValue(repeat, gradientType));
228 CSSRadialGradientValue(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSRadialGradient)
229 : CSSGradientValue(RadialGradientClass, repeat, gradientType)
234 : CSSGradientValue(other, RadialGradientClass, other.gradientType())