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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedLength.idl 27 readonly attribute SVGLength baseVal;
28 readonly attribute SVGLength animVal;
SVGLengthList.idl 31 [StrictTypeChecking, RaisesException] SVGLength initialize(SVGLength item);
32 [StrictTypeChecking, RaisesException] SVGLength getItem(unsigned long index);
33 [StrictTypeChecking, RaisesException] SVGLength insertItemBefore(SVGLength item, unsigned long index);
34 [StrictTypeChecking, RaisesException] SVGLength replaceItem(SVGLength item, unsigned long index);
35 [StrictTypeChecking, RaisesException] SVGLength removeItem(unsigned long index);
36 [StrictTypeChecking, RaisesException] SVGLength appendItem(SVGLength item)
    [all...]
LinearGradientAttributes.h 39 SVGLength x1() const { return m_x1; }
40 SVGLength y1() const { return m_y1; }
41 SVGLength x2() const { return m_x2; }
42 SVGLength y2() const { return m_y2; }
44 void setX1(const SVGLength& value) { m_x1 = value; m_x1Set = true; }
45 void setY1(const SVGLength& value) { m_y1 = value; m_y1Set = true; }
46 void setX2(const SVGLength& value) { m_x2 = value; m_x2Set = true; }
47 void setY2(const SVGLength& value) { m_y2 = value; m_y2Set = true; }
56 SVGLength m_x1;
57 SVGLength m_y1
    [all...]
RadialGradientAttributes.h 40 SVGLength cx() const { return m_cx; }
41 SVGLength cy() const { return m_cy; }
42 SVGLength r() const { return m_r; }
43 SVGLength fx() const { return m_fx; }
44 SVGLength fy() const { return m_fy; }
45 SVGLength fr() const { return m_fr; }
47 void setCx(const SVGLength& value) { m_cx = value; m_cxSet = true; }
48 void setCy(const SVGLength& value) { m_cy = value; m_cySet = true; }
49 void setR(const SVGLength& value) { m_r = value; m_rSet = true; }
50 void setFx(const SVGLength& value) { m_fx = value; m_fxSet = true;
    [all...]
SVGLength.h 41 class SVGLength {
59 SVGLength(SVGLengthMode = LengthModeOther, const String& valueAsString = String());
60 SVGLength(const SVGLengthContext&, float, SVGLengthMode = LengthModeOther, SVGLengthType = LengthTypeNumber);
61 SVGLength(const SVGLength&);
66 bool operator==(const SVGLength&) const;
67 bool operator!=(const SVGLength&) const;
69 static SVGLength construct(SVGLengthMode, const String&, SVGParsingError&, SVGLengthNegativeValuesMode = AllowNegativeLengths);
100 static SVGLength fromCSSPrimitiveValue(CSSPrimitiveValue*);
101 static PassRefPtr<CSSPrimitiveValue> toCSSPrimitiveValue(const SVGLength&)
    [all...]
SVGLengthContext.h 30 class SVGLength;
62 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitType, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height);
63 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, const SVGLength& x, const SVGLength& y);
64 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, const SVGLength&);
SVGAnimatedLength.cpp 31 , m_lengthMode(SVGLength::lengthModeForAnimatedLengthAttribute(animationElement->attributeName()))
35 static inline SVGLength& sharedSVGLength(SVGLengthMode mode, const String& valueAsString)
37 DEFINE_STATIC_LOCAL(SVGLength, sharedLength, ());
44 return SVGAnimatedType::createLength(new SVGLength(m_lengthMode, string));
78 const SVGLength& fromLength = from->length();
79 SVGLength& toLength = to->length();
84 static SVGLength parseLengthFromString(SVGAnimationElement* animationElement, const String& string)
86 return sharedSVGLength(SVGLength::lengthModeForAnimatedLengthAttribute(animationElement->attributeName()), string);
94 SVGLength fromSVGLength = m_animationElement->animationMode() == ToAnimation ? animated->length() : from->length();
95 SVGLength toSVGLength = to->length()
    [all...]
PatternAttributes.h 23 #include "core/svg/SVGLength.h"
55 SVGLength x() const { return m_x; }
56 SVGLength y() const { return m_y; }
57 SVGLength width() const { return m_width; }
58 SVGLength height() const { return m_height; }
66 void setX(const SVGLength& value)
72 void setY(const SVGLength& value)
78 void setWidth(const SVGLength& value)
84 void setHeight(const SVGLength& value)
139 SVGLength m_x
    [all...]
SVGLengthList.h 24 #include "core/svg/SVGLength.h"
29 class SVGLengthList : public Vector<SVGLength> {
43 typedef SVGLength ListItemType;
SVGLength.cpp 24 #include "core/svg/SVGLength.h"
132 SVGLength::SVGLength(SVGLengthMode mode, const String& valueAsString)
139 SVGLength::SVGLength(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType)
146 SVGLength::SVGLength(const SVGLength& other)
152 void SVGLength::setValueAsString(const String& valueAsString, SVGLengthMode mode, ExceptionState& exceptionState)
159 bool SVGLength::operator==(const SVGLength& other) cons
    [all...]
SVGAnimatedLength.h 24 #include "core/svg/SVGLength.h"
29 typedef SVGAnimatedPropertyTearOff<SVGLength> SVGAnimatedLength;
33 DECLARE_ANIMATED_PROPERTY(SVGAnimatedLength, SVGLength, UpperProperty, LowerProperty)
36 DEFINE_ANIMATED_PROPERTY(AnimatedLength, OwnerType, DOMAttribute, DOMAttribute.localName(), UpperProperty, LowerProperty, SVGAnimatedLength, SVGLength)
SVGRectElement.cpp 28 #include "core/svg/SVGLength.h"
92 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
94 setYBaseValue(SVGLength::construct(LengthModeHeight, value, parseError));
96 setRxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths));
98 setRyBaseValue(SVGLength::construct(LengthModeHeight, value, parseError, ForbidNegativeLengths));
100 setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths));
102 setHeightBaseValue(SVGLength::construct(LengthModeHeight, value, parseError, ForbidNegativeLengths));
SVGTextContentElement.h 93 SVGLength& specifiedTextLength() { return m_specifiedTextLength; }
116 mutable SVGSynchronizableAnimatedProperty<SVGLength> m_textLength;
117 SVGLength m_specifiedTextLength;
SVGLineElement.cpp 27 #include "core/svg/SVGLength.h"
83 setX1BaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
85 setY1BaseValue(SVGLength::construct(LengthModeHeight, value, parseError));
87 setX2BaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
89 setY2BaseValue(SVGLength::construct(LengthModeHeight, value, parseError));
SVGLength.idl 23 interface SVGLength {
SVGLengthContext.cpp 50 FloatRect SVGLengthContext::resolveRectangle(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height)
65 FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const SVGLength& x, const SVGLength& y)
77 float SVGLengthContext::resolveLength(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const SVGLength& x)
SVGCircleElement.cpp 28 #include "core/svg/SVGLength.h"
80 setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
82 setCyBaseValue(SVGLength::construct(LengthModeHeight, value, parseError));
84 setRBaseValue(SVGLength::construct(LengthModeOther, value, parseError, ForbidNegativeLengths));
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableStrokeDasharrayList.h 35 #include "core/svg/SVGLength.h"
43 static PassRefPtr<AnimatableStrokeDasharrayList> create(const Vector<SVGLength>& lengths)
48 Vector<SVGLength> toSVGLengthVector() const;
54 AnimatableStrokeDasharrayList(const Vector<SVGLength>&);
AnimatableSVGLength.h 35 #include "core/svg/SVGLength.h"
43 static PassRefPtr<AnimatableSVGLength> create(const SVGLength& length)
48 const SVGLength& toSVGLength() const
58 AnimatableSVGLength(const SVGLength& length)
66 SVGLength m_length;
AnimatableStrokeDasharrayListTest.cpp 34 #include "core/svg/SVGLength.h"
44 Vector<SVGLength> vectorA(4);
45 Vector<SVGLength> vectorB(4);
55 vectorB = Vector<SVGLength>(5);
AnimatableStrokeDasharrayList.cpp 39 AnimatableStrokeDasharrayList::AnimatableStrokeDasharrayList(const Vector<SVGLength>& lengths)
45 Vector<SVGLength> AnimatableStrokeDasharrayList::toSVGLengthVector() const
47 Vector<SVGLength> lengths(m_values.size());
71 SVGLength length;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 45 SVGPropertyTearOff<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
46 SVGLength& imp = wrapper->propertyReference();
57 SVGPropertyTearOff<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
68 SVGLength& imp = wrapper->propertyReference();
79 ExceptionState exceptionState(ExceptionState::ExecutionContext, "convertToSpecifiedUnits", "SVGLength", info.Holder(), info.GetIsolate());
80 SVGPropertyTearOff<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
93 SVGLength& imp = wrapper->propertyReference();
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 49 static PassRefPtr<CSSValue> strokeDashArrayToCSSValueList(const Vector<SVGLength>& dashes)
55 const Vector<SVGLength>::const_iterator end = dashes.end();
56 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
57 list->append(SVGLength::toCSSPrimitiveValue(*it));
165 return SVGLength::toCSSPrimitiveValue(svgStyle->kerning());
183 return SVGLength::toCSSPrimitiveValue(svgStyle->strokeDashOffset());
185 return SVGLength::toCSSPrimitiveValue(svgStyle->strokeWidth());
195 return SVGLength::toCSSPrimitiveValue(svgStyle->baselineShiftValue());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.h 82 static Vector<SVGLength> initialStrokeDashArray() { return Vector<SVGLength>(); }
98 static SVGLength initialBaselineShiftValue()
100 SVGLength length;
105 static SVGLength initialKerning()
107 SVGLength length;
112 static SVGLength initialStrokeDashOffset()
114 SVGLength length;
119 static SVGLength initialStrokeWidth()
121 SVGLength length
    [all...]
SVGRenderStyleDefs.h 31 #include "core/svg/SVGLength.h"
149 SVGLength width;
150 SVGLength dashOffset;
151 Vector<SVGLength> dashArray;
195 SVGLength kerning;
219 SVGLength baselineShiftValue;

Completed in 1144 milliseconds

1 2 3 4