valueInSpecifiedUnits   53 Source/core/animation/AnimatableStrokeDasharrayList.cpp         if (length->valueInSpecifiedUnits() < 0)
valueInSpecifiedUnits  141 Source/core/css/resolver/AnimatedStyleBuilder.cpp     if (length->valueInSpecifiedUnits() < 0)
valueInSpecifiedUnits   89 Source/core/svg/SVGAngle.cpp SVGAngle::SVGAngle(SVGAngleType unitType, float valueInSpecifiedUnits, SVGMarkerOrientType orientType)
valueInSpecifiedUnits   92 Source/core/svg/SVGAngle.cpp     , m_valueInSpecifiedUnits(valueInSpecifiedUnits)
valueInSpecifiedUnits  214 Source/core/svg/SVGAngle.cpp static bool parseValue(const String& value, float& valueInSpecifiedUnits, SVGAngle::SVGAngleType& unitType)
valueInSpecifiedUnits  219 Source/core/svg/SVGAngle.cpp     if (!parseNumber(ptr, end, valueInSpecifiedUnits, false))
valueInSpecifiedUnits  242 Source/core/svg/SVGAngle.cpp     float valueInSpecifiedUnits = 0;
valueInSpecifiedUnits  245 Source/core/svg/SVGAngle.cpp     bool success = value.is8Bit() ? parseValue<LChar>(value, valueInSpecifiedUnits, unitType)
valueInSpecifiedUnits  246 Source/core/svg/SVGAngle.cpp                                   : parseValue<UChar>(value, valueInSpecifiedUnits, unitType);
valueInSpecifiedUnits  254 Source/core/svg/SVGAngle.cpp     m_valueInSpecifiedUnits = valueInSpecifiedUnits;
valueInSpecifiedUnits  257 Source/core/svg/SVGAngle.cpp void SVGAngle::newValueSpecifiedUnits(SVGAngleType unitType, float valueInSpecifiedUnits)
valueInSpecifiedUnits  261 Source/core/svg/SVGAngle.cpp     m_valueInSpecifiedUnits = valueInSpecifiedUnits;
valueInSpecifiedUnits  361 Source/core/svg/SVGAngle.cpp                     newValueSpecifiedUnits(fromAngle->unitType(), fromAngle->valueInSpecifiedUnits());
valueInSpecifiedUnits   85 Source/core/svg/SVGAngle.h     void setValueInSpecifiedUnits(float valueInSpecifiedUnits) { m_valueInSpecifiedUnits = valueInSpecifiedUnits; }
valueInSpecifiedUnits   86 Source/core/svg/SVGAngle.h     float valueInSpecifiedUnits() const { return m_valueInSpecifiedUnits; }
valueInSpecifiedUnits   88 Source/core/svg/SVGAngle.h     void newValueSpecifiedUnits(SVGAngleType unitType, float valueInSpecifiedUnits);
valueInSpecifiedUnits   71 Source/core/svg/SVGAngleTearOff.cpp void SVGAngleTearOff::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState& exceptionState)
valueInSpecifiedUnits   83 Source/core/svg/SVGAngleTearOff.cpp     target()->newValueSpecifiedUnits(static_cast<SVGAngle::SVGAngleType>(unitType), valueInSpecifiedUnits);
valueInSpecifiedUnits   63 Source/core/svg/SVGAngleTearOff.h     float valueInSpecifiedUnits() { return target()->valueInSpecifiedUnits(); }
valueInSpecifiedUnits   65 Source/core/svg/SVGAngleTearOff.h     void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState&);
valueInSpecifiedUnits   51 Source/core/svg/SVGAnimatedLength.cpp     } else if (m_negativeValuesMode == ForbidNegativeLengths && baseValue()->valueInSpecifiedUnits() < 0) {
valueInSpecifiedUnits  346 Source/core/svg/SVGLength.cpp     return CSSPrimitiveValue::create(length->valueInSpecifiedUnits(), cssType);
valueInSpecifiedUnits  410 Source/core/svg/SVGLength.cpp         float fromValue = from->valueInSpecifiedUnits();
valueInSpecifiedUnits  411 Source/core/svg/SVGLength.cpp         float toValue = valueInSpecifiedUnits();
valueInSpecifiedUnits  424 Source/core/svg/SVGLength.cpp     float fromValueInUserUnits = nonRelativeLengthContext.convertValueToUserUnits(from->valueInSpecifiedUnits(), from->unitMode(), fromType, es);
valueInSpecifiedUnits  432 Source/core/svg/SVGLength.cpp     float toValue = valueInSpecifiedUnits();
valueInSpecifiedUnits   69 Source/core/svg/SVGLength.h     float valueInSpecifiedUnits() const { return m_valueInSpecifiedUnits; }
valueInSpecifiedUnits   77 Source/core/svg/SVGLength.h     void newValueSpecifiedUnits(SVGLengthType, float valueInSpecifiedUnits);
valueInSpecifiedUnits   80 Source/core/svg/SVGLengthTearOff.cpp     return target()->valueInSpecifiedUnits();
valueInSpecifiedUnits  109 Source/core/svg/SVGLengthTearOff.cpp void SVGLengthTearOff::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState& exceptionState)
valueInSpecifiedUnits  121 Source/core/svg/SVGLengthTearOff.cpp     target()->newValueSpecifiedUnits(toSVGLengthType(unitType), valueInSpecifiedUnits);
valueInSpecifiedUnits   66 Source/core/svg/SVGLengthTearOff.h     float valueInSpecifiedUnits();
valueInSpecifiedUnits   70 Source/core/svg/SVGLengthTearOff.h     void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState&);
valueInSpecifiedUnits  161 Source/core/svg/SVGMarkerElement.cpp     m_orientAngle->baseValue()->newValueSpecifiedUnits(target->unitType(), target->valueInSpecifiedUnits());