Searched refs:valueInSpecifiedUnits (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAngle.h50 void setValueInSpecifiedUnits(float valueInSpecifiedUnits) { m_valueInSpecifiedUnits = valueInSpecifiedUnits; } argument
51 float valueInSpecifiedUnits() const { return m_valueInSpecifiedUnits; } function in class:WebCore::SVGAngle
56 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionCode&);
H A DSVGAngle.idl35 [StrictTypeChecking] attribute float valueInSpecifiedUnits;
39 [StrictTypeChecking, RaisesException] void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits);
H A DSVGLength.idl42 [StrictTypeChecking] attribute float valueInSpecifiedUnits;
46 float valueInSpecifiedUnits);
H A DSVGLength.h77 float valueInSpecifiedUnits() const { return m_valueInSpecifiedUnits; } function in class:WebCore::SVGLength
86 void newValueSpecifiedUnits(unsigned short, float valueInSpecifiedUnits, ExceptionCode&);
130 float fromValue = from.valueInSpecifiedUnits();
131 float toValue = valueInSpecifiedUnits();
145 float fromValueInUserUnits = nonRelativeLengthContext.convertValueToUserUnits(from.valueInSpecifiedUnits(), from.unitMode(), fromType, ec);
153 float toValue = valueInSpecifiedUnits();
H A DSVGAngle.cpp144 float valueInSpecifiedUnits = 0; local
148 if (!parseNumber(ptr, end, valueInSpecifiedUnits, false)) {
160 m_valueInSpecifiedUnits = valueInSpecifiedUnits;
163 void SVGAngle::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionCode& ec) argument
173 m_valueInSpecifiedUnits = valueInSpecifiedUnits;
H A DSVGLength.cpp171 else if (negativeValuesMode == ForbidNegativeLengths && length.valueInSpecifiedUnits() < 0)
377 return CSSPrimitiveValue::create(length.valueInSpecifiedUnits(), cssType);

Completed in 175 milliseconds