Home
last modified time | relevance | path

Searched refs:SVGLengthType (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGLength.h55 SVGLengthType unitType() const { return static_cast<SVGLengthType>(m_unitType); } in unitType()
56 void setUnitType(SVGLengthType);
77 void newValueSpecifiedUnits(SVGLengthType, float valueInSpecifiedUnits);
78 void convertToSpecifiedUnits(SVGLengthType, const SVGLengthContext&, ExceptionState&);
DSVGLength.cpp40 inline String lengthTypeToString(SVGLengthType type) in lengthTypeToString()
71 SVGLengthType stringToLengthType(const CharType*& ptr, const CharType* end) in stringToLengthType()
76 SVGLengthType type = LengthTypeUnknown; in stringToLengthType()
180 void SVGLength::setUnitType(SVGLengthType type) in setUnitType()
196 static bool parseValueInternal(const String& string, float& convertedNumber, SVGLengthType& type) in parseValueInternal()
221 SVGLengthType type = LengthTypeUnknown; in setValueAsString()
241 void SVGLength::newValueSpecifiedUnits(SVGLengthType type, float value) in newValueSpecifiedUnits()
247 void SVGLength::convertToSpecifiedUnits(SVGLengthType type, const SVGLengthContext& context, Except… in convertToSpecifiedUnits()
255 SVGLengthType originalType = unitType(); in convertToSpecifiedUnits()
269 SVGLengthType svgType; in fromCSSPrimitiveValue()
[all …]
DSVGLengthContext.h32 enum SVGLengthType { enum
67 …float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit, ExceptionState&) const;
68 …float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit, ExceptionState&) const;
DSVGLengthTearOff.cpp42 inline SVGLengthType toSVGLengthType(unsigned short type) in toSVGLengthType()
45 return static_cast<SVGLengthType>(type); in toSVGLengthType()
50 SVGLengthType SVGLengthTearOff::unitType() in unitType()
DSVGLengthTearOff.h62 SVGLengthType unitType();
DSVGLengthContext.cpp101 float SVGLengthContext::convertValueToUserUnits(float value, SVGLengthMode mode, SVGLengthType from… in convertValueToUserUnits()
141 float SVGLengthContext::convertValueFromUserUnits(float value, SVGLengthMode mode, SVGLengthType to… in convertValueFromUserUnits()
DSVGLengthList.cpp183 SVGLengthType unitType = toList->at(i)->unitType(); in calculateAnimatedValue()