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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGCircleElement.h 35 SVGAnimatedLength* cx() const { return m_cx.get(); }
50 RefPtr<SVGAnimatedLength> m_cx; member in class:WebCore::FINAL
SVGEllipseElement.h 35 SVGAnimatedLength* cx() const { return m_cx.get(); }
51 RefPtr<SVGAnimatedLength> m_cx; member in class:WebCore::FINAL
RadialGradientAttributes.h 28 : m_cx(SVGLength::create(LengthModeWidth))
41 m_cx->setValueAsString("50%", IGNORE_EXCEPTION);
46 SVGLength* cx() const { return m_cx.get(); }
53 void setCx(PassRefPtr<SVGLength> value) { m_cx = value; m_cxSet = true; }
69 RefPtr<SVGLength> m_cx; member in struct:WebCore::RadialGradientAttributes
SVGRadialGradientElement.h 38 SVGAnimatedLength* cx() const { return m_cx.get(); }
56 RefPtr<SVGAnimatedLength> m_cx; member in class:WebCore::FINAL
SVGCircleElement.cpp 33 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
39 addToPropertyMap(m_cx);
64 m_cx->setBaseValueAsString(value, parseError);
106 return m_cx->currentValue()->isRelative()
SVGTransformDistance.cpp 33 , m_cx(0)
41 , m_cx(cx)
49 , m_cx(0)
66 m_cx = centerDistance.width();
96 return SVGTransformDistance(m_transformType, m_angle * scaleFactor, m_cx * scaleFactor, m_cy * scaleFactor, AffineTransform());
98 return SVGTransformDistance(m_transformType, m_angle * scaleFactor, m_cx * scaleFactor, m_cy * scaleFactor, AffineTransform(m_transform).scale(scaleFactor));
107 return SVGTransformDistance(m_transformType, m_angle * scaleFactor, m_cx * scaleFactor, m_cy * scaleFactor, AffineTransform());
181 newTransform->setRotate(transform->angle() + m_angle, center.x() + m_cx, center.y() + m_cy);
204 return sqrtf(m_angle * m_angle + m_cx * m_cx + m_cy * m_cy)
    [all...]
SVGEllipseElement.cpp 33 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
40 addToPropertyMap(m_cx);
67 m_cx->setBaseValueAsString(value, parseError);
112 return m_cx->currentValue()->isRelative()
SVGTransformDistance.h 46 float m_cx; member in class:WebCore::SVGTransformDistance
SVGRadialGradientElement.cpp 36 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
46 m_cx->setDefaultValueAsString("50%");
53 addToPropertyMap(m_cx);
84 m_cx->setBaseValueAsString(value, parseError);
208 return m_cx->currentValue()->isRelative()

Completed in 747 milliseconds