HomeSort by relevance Sort by last modified time
    Searched refs:SVGLength (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthList.idl 36 [RaisesException] SVGLength initialize(SVGLength item);
37 [RaisesException] getter SVGLength getItem(unsigned long index);
38 [RaisesException] setter SVGLength (unsigned long index, SVGLength value);
39 [RaisesException] SVGLength insertItemBefore(SVGLength item, unsigned long index);
40 [RaisesException] SVGLength replaceItem(SVGLength item, unsigned long index);
41 [RaisesException] SVGLength removeItem(unsigned long index)
    [all...]
RadialGradientAttributes.h 28 : m_cx(SVGLength::create(LengthModeWidth))
29 , m_cy(SVGLength::create(LengthModeHeight))
30 , m_r(SVGLength::create(LengthModeOther))
31 , m_fx(SVGLength::create(LengthModeWidth))
32 , m_fy(SVGLength::create(LengthModeHeight))
33 , m_fr(SVGLength::create(LengthModeOther))
46 SVGLength* cx() const { return m_cx.get(); }
47 SVGLength* cy() const { return m_cy.get(); }
48 SVGLength* r() const { return m_r.get(); }
49 SVGLength* fx() const { return m_fx.get();
    [all...]
LinearGradientAttributes.h 28 : m_x1(SVGLength::create(LengthModeWidth))
29 , m_y1(SVGLength::create(LengthModeWidth))
30 , m_x2(SVGLength::create(LengthModeWidth))
31 , m_y2(SVGLength::create(LengthModeWidth))
40 SVGLength* x1() const { return m_x1.get(); }
41 SVGLength* y1() const { return m_y1.get(); }
42 SVGLength* x2() const { return m_x2.get(); }
43 SVGLength* y2() const { return m_y2.get(); }
45 void setX1(PassRefPtr<SVGLength> value) { m_x1 = value; m_x1Set = true; }
46 void setY1(PassRefPtr<SVGLength> value) { m_y1 = value; m_y1Set = true;
    [all...]
SVGAnimatedLength.idl 30 readonly attribute SVGLength baseVal;
31 readonly attribute SVGLength animVal;
SVGLength.h 43 class SVGLength FINAL : public SVGPropertyBase {
47 static PassRefPtr<SVGLength> create(SVGLengthMode mode = LengthModeOther)
49 return adoptRef(new SVGLength(mode));
52 PassRefPtr<SVGLength> clone() const;
59 bool operator==(const SVGLength&) const;
60 bool operator!=(const SVGLength& other) const { return !operator==(other); }
93 static PassRefPtr<SVGLength> fromCSSPrimitiveValue(CSSPrimitiveValue*);
94 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> toCSSPrimitiveValue(PassRefPtr<SVGLength>);
97 PassRefPtr<SVGLength> blend(PassRefPtr<SVGLength> from, float progress) const
    [all...]
PatternAttributes.h 23 #include "core/svg/SVGLength.h"
33 : m_x(SVGLength::create(LengthModeWidth))
34 , m_y(SVGLength::create(LengthModeHeight))
35 , m_width(SVGLength::create(LengthModeWidth))
36 , m_height(SVGLength::create(LengthModeHeight))
55 SVGLength* x() const { return m_x.get(); }
56 SVGLength* y() const { return m_y.get(); }
57 SVGLength* width() const { return m_width.get(); }
58 SVGLength* height() const { return m_height.get(); }
66 void setX(PassRefPtr<SVGLength> value
    [all...]
SVGAnimatedLength.h 39 class SVGAnimatedLength : public SVGAnimatedProperty<SVGLength> {
41 static PassRefPtr<SVGAnimatedLength> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode)
50 SVGAnimatedLength(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode)
51 : SVGAnimatedProperty<SVGLength>(contextElement, attributeName, initialValue)
SVGLengthContext.h 30 class SVGLength;
63 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitType, const FloatRect& viewport, PassRefPtr<SVGLength> x, PassRefPtr<SVGLength> y, PassRefPtr<SVGLength> width, PassRefPtr<SVGLength> height);
64 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, PassRefPtr<SVGLength> x, PassRefPtr<SVGLength> y);
65 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, PassRefPtr<SVGLength>);
SVGLength.cpp 24 #include "core/svg/SVGLength.h"
117 SVGLength::SVGLength(SVGLengthMode mode)
125 SVGLength::SVGLength(const SVGLength& o)
133 PassRefPtr<SVGLength> SVGLength::clone() const
135 return adoptRef(new SVGLength(*this));
138 PassRefPtr<SVGPropertyBase> SVGLength::cloneForAnimation(const String& value) cons
    [all...]
SVGLengthContext.cpp 51 FloatRect SVGLengthContext::resolveRectangle(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const FloatRect& viewport, PassRefPtr<SVGLength> passX, PassRefPtr<SVGLength> passY, PassRefPtr<SVGLength> passWidth, PassRefPtr<SVGLength> passHeight)
53 RefPtr<SVGLength> x = passX;
54 RefPtr<SVGLength> y = passY;
55 RefPtr<SVGLength> width = passWidth;
56 RefPtr<SVGLength> height = passHeight;
72 FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context, SVGUnitTypes::SVGUnitType type, PassRefPtr<SVGLength> passX, PassRefPtr<SVGLength> passY
    [all...]
SVGRectElement.cpp 27 #include "core/svg/SVGLength.h"
33 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
34 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
35 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
36 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
37 , m_rx(SVGAnimatedLength::create(this, SVGNames::rxAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
38 , m_ry(SVGAnimatedLength::create(this, SVGNames::ryAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
SVGEllipseElement.cpp 27 #include "core/svg/SVGLength.h"
33 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
34 , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
35 , m_rx(SVGAnimatedLength::create(this, SVGNames::rxAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
36 , m_ry(SVGAnimatedLength::create(this, SVGNames::ryAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
SVGLineElement.cpp 26 #include "core/svg/SVGLength.h"
32 , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
33 , m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
34 , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
35 , m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
SVGLengthTearOff.h 35 #include "core/svg/SVGLength.h"
40 class SVGLengthTearOff FINAL : public SVGPropertyTearOff<SVGLength>, public ScriptWrappable {
58 static PassRefPtr<SVGLengthTearOff> create(PassRefPtr<SVGLength> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
75 SVGLengthTearOff(PassRefPtr<SVGLength>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
SVGForeignObjectElement.cpp 28 #include "core/svg/SVGLength.h"
35 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
37 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
38 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
77 RefPtr<SVGLength> length = SVGLength::create(LengthModeOther);
SVGCircleElement.cpp 27 #include "core/svg/SVGLength.h"
33 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
34 , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
35 , m_r(SVGAnimatedLength::create(this, SVGNames::rAttr, SVGLength::create(LengthModeOther), ForbidNegativeLengths))
SVGFilterPrimitiveStandardAttributes.cpp 29 #include "core/svg/SVGLength.h"
35 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
37 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
38 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
SVGLength.idl 27 ] interface SVGLength {
SVGLengthList.h 35 #include "core/svg/SVGLength.h"
42 class SVGLengthList FINAL : public SVGListPropertyHelper<SVGLengthList, SVGLength> {
69 // Create SVGLength items used to adjust the list length
71 virtual PassRefPtr<SVGLength> createPaddingItem() const OVERRIDE;
SVGFilterElement.cpp 37 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
38 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
39 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
40 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
SVGImageElement.cpp 37 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
38 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
39 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
40 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
SVGLinearGradientElement.cpp 30 #include "core/svg/SVGLength.h"
37 , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
38 , m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
39 , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
40 , m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableSVGLength.h 35 #include "core/svg/SVGLength.h"
43 static PassRefPtrWillBeRawPtr<AnimatableSVGLength> create(PassRefPtr<SVGLength> length)
48 SVGLength* toSVGLength() const
59 AnimatableSVGLength(PassRefPtr<SVGLength> length)
67 RefPtr<SVGLength> m_length;
AnimatableValueTestHelperTest.cpp 74 RefPtr<SVGLength> length1cm = SVGLength::create(LengthModeOther);
75 RefPtr<SVGLength> length2cm = SVGLength::create(LengthModeOther);
AnimatableStrokeDasharrayListTest.cpp 34 #include "core/svg/SVGLength.h"
46 list->append(SVGLength::create());

Completed in 404 milliseconds

1 2 3 4 5