HomeSort by relevance Sort by last modified time
    Searched refs:m_stdDeviation (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEGaussianBlurElement.h 36 SVGAnimatedNumber* stdDeviationX() { return m_stdDeviation->firstNumber(); }
37 SVGAnimatedNumber* stdDeviationY() { return m_stdDeviation->secondNumber(); }
48 RefPtr<SVGAnimatedNumberOptionalNumber> m_stdDeviation;
SVGFEDropShadowElement.h 38 SVGAnimatedNumber* stdDeviationX() { return m_stdDeviation->firstNumber(); }
39 SVGAnimatedNumber* stdDeviationY() { return m_stdDeviation->secondNumber(); }
55 RefPtr<SVGAnimatedNumberOptionalNumber> m_stdDeviation;
SVGFEGaussianBlurElement.cpp 34 , m_stdDeviation(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::stdDeviationAttr, 0, 0))
39 addToPropertyMap(m_stdDeviation);
74 m_stdDeviation->setBaseValueAsString(value, parseError);
SVGFEDropShadowElement.cpp 36 , m_stdDeviation(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::stdDeviationAttr, 2, 2))
43 addToPropertyMap(m_stdDeviation);
84 m_stdDeviation->setBaseValueAsString(value, parseError);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.cpp 121 LengthType lengthType = m_stdDeviation.type();
123 return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative));
126 return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative));
134 WebCore::blend(0, m_stdDeviation, progress),
141 WebCore::blend(fromOp->stdDeviation(), m_stdDeviation, progress),
FilterOperation.h 243 const Length& stdDeviation() const { return m_stdDeviation; }
256 return m_stdDeviation == other->m_stdDeviation;
261 , m_stdDeviation(stdDeviation)
265 Length m_stdDeviation;
280 int stdDeviation() const { return m_stdDeviation; }
294 return m_location == other->m_location && m_stdDeviation == other->m_stdDeviation && m_color == other->m_color;
300 , m_stdDeviation(stdDeviation)
306 int m_stdDeviation;
    [all...]

Completed in 864 milliseconds