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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.h 41 SVGAnimatedNumber* k4() { return m_k4.get(); }
58 RefPtr<SVGAnimatedNumber> m_k4; member in class:blink::FINAL
SVGFECompositeElement.cpp 50 , m_k4(SVGAnimatedNumber::create(this, SVGNames::k4Attr, SVGNumber::create()))
58 addToPropertyMap(m_k4);
101 m_k4->setBaseValueAsString(value, parseError);
122 return composite->setK4(m_k4->currentValue()->value());
163 RefPtr<FilterEffect> effect = FEComposite::create(filter, m_svgOperator->currentValue()->enumValue(), m_k1->currentValue()->value(), m_k2->currentValue()->value(), m_k3->currentValue()->value(), m_k4->currentValue()->value());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComposite.h 91 float m_k4; member in class:blink::FEComposite
FEComposite.cpp 48 , m_k4(k4)
111 return m_k4;
116 if (m_k4 == k4)
118 m_k4 = k4;
307 platformArithmeticSoftware(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4);
395 mode = adoptRef(SkArithmeticMode::Create(SkFloatToScalar(m_k1), SkFloatToScalar(m_k2), SkFloatToScalar(m_k3), SkFloatToScalar(m_k4), requiresPMColorValidation));
436 ts << " k1=\"" << m_k1 << "\" k2=\"" << m_k2 << "\" k3=\"" << m_k3 << "\" k4=\"" << m_k4 << "\""; local

Completed in 189 milliseconds