Home
last modified time | relevance | path

Searched refs:LengthModeWidth (Results 1 – 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGLength.cpp38 ASSERT(mode >= LengthModeWidth && mode <= LengthModeOther); in toSVGLengthMode()
406 s_lengthModeMap.set(SVGNames::xAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
408 s_lengthModeMap.set(SVGNames::cxAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
410 s_lengthModeMap.set(SVGNames::dxAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
412 s_lengthModeMap.set(SVGNames::fxAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
415 s_lengthModeMap.set(SVGNames::widthAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
417 s_lengthModeMap.set(SVGNames::x1Attr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
418 s_lengthModeMap.set(SVGNames::x2Attr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
421 s_lengthModeMap.set(SVGNames::refXAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
423 s_lengthModeMap.set(SVGNames::markerWidthAttr, LengthModeWidth); in lengthModeForAnimatedLengthAttribute()
[all …]
DSVGRectElement.cpp54 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
56 , m_width(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
58 , m_rx(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
92 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
96 … setRxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
100 …setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
DRadialGradientAttributes.h28 : m_cx(LengthModeWidth, "50%") in RadialGradientAttributes()
29 , m_cy(LengthModeWidth, "50%") in RadialGradientAttributes()
30 , m_r(LengthModeWidth, "50%") in RadialGradientAttributes()
DSVGLineElement.cpp49 , m_x1(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
51 , m_x2(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
83 setX1BaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
87 setX2BaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGEllipseElement.cpp50 , m_cx(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
52 , m_rx(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
84 setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
88 … setRxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
DSVGForeignObjectElement.cpp53 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
55 , m_width(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
87 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
91 setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGFilterPrimitiveStandardAttributes.cpp52 , m_x(LengthModeWidth, "0%") in DEFINE_ANIMATED_LENGTH()
54 , m_width(LengthModeWidth, "100%") in DEFINE_ANIMATED_LENGTH()
82 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
86 setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGMaskElement.cpp58 , m_x(LengthModeWidth, "-10%") in DEFINE_ANIMATED_ENUMERATION()
60 , m_width(LengthModeWidth, "120%") in DEFINE_ANIMATED_ENUMERATION()
107 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
111 setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGLinearGradientElement.cpp52 , m_x1(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
54 , m_x2(LengthModeWidth, "100%") in DEFINE_ANIMATED_LENGTH()
86 setX1BaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
90 setX2BaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGImageElement.cpp57 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
59 , m_width(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
123 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
131 …setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
DSVGRadialGradientElement.cpp55 , m_cx(LengthModeWidth, "50%") in DEFINE_ANIMATED_LENGTH()
58 , m_fx(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
93 setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
99 setFxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGMarkerElement.cpp75 , m_refX(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
77 , m_markerWidth(LengthModeWidth, "3") in DEFINE_ANIMATED_LENGTH()
135 setRefXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
139 setMarkerWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGPatternElement.cpp65 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
67 , m_width(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
123 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
127 …setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
DSVGFilterElement.cpp64 , m_x(LengthModeWidth, "-10%") in DEFINE_ANIMATED_ENUMERATION()
66 , m_width(LengthModeWidth, "120%") in DEFINE_ANIMATED_ENUMERATION()
134 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
138 setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGCircleElement.cpp48 , m_cx(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
80 setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGCursorElement.cpp48 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
87 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
DSVGTextPositioningElement.cpp79 newList.parse(value, LengthModeWidth); in parseAttribute()
95 newList.parse(value, LengthModeWidth); in parseAttribute()
DLinearGradientAttributes.h30 , m_x2(LengthModeWidth, "100%") in LinearGradientAttributes()
DSVGLengthContext.cpp170 case LengthModeWidth: in convertValueFromUserUnitsToPercentage()
191 case LengthModeWidth: in convertValueFromPercentageToUserUnits()
DSVGSVGElement.cpp85 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
87 , m_width(LengthModeWidth, "100%") in DEFINE_ANIMATED_LENGTH()
252 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
256 …setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
DSVGLengthContext.h47 LengthModeWidth = 0, enumerator
DSVGUseElement.cpp74 , m_x(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
76 , m_width(LengthModeWidth) in DEFINE_ANIMATED_LENGTH()
142 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError)); in parseAttribute()
146 …setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths)); in parseAttribute()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGViewportContainer.cpp102 SVGLength containerWidth(LengthModeWidth, "100%"); in calcViewport()