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

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAngle.h49 void setValueInSpecifiedUnits(float valueInSpecifiedUnits) { m_valueInSpecifiedUnits = valueInSpecifiedUnits; } argument
50 float valueInSpecifiedUnits() const { return m_valueInSpecifiedUnits; } function in class:WebCore::SVGAngle
55 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState&);
H A DSVGAngle.idl33 [StrictTypeChecking] attribute float valueInSpecifiedUnits;
37 [StrictTypeChecking, RaisesException] void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits);
H A DSVGLength.idl40 [StrictTypeChecking] attribute float valueInSpecifiedUnits;
44 float valueInSpecifiedUnits);
H A DSVGAngle.cpp138 static bool parseValue(const String& value, float& valueInSpecifiedUnits, SVGAngle::SVGAngleType& unitType) argument
143 if (!parseNumber(ptr, end, valueInSpecifiedUnits, false))
160 float valueInSpecifiedUnits = 0; local
163 bool success = value.is8Bit() ? parseValue<LChar>(value, valueInSpecifiedUnits, unitType)
164 : parseValue<UChar>(value, valueInSpecifiedUnits, unitType);
171 m_valueInSpecifiedUnits = valueInSpecifiedUnits;
174 void SVGAngle::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState& exceptionState) argument
184 m_valueInSpecifiedUnits = valueInSpecifiedUnits;
H A DSVGLength.h76 float valueInSpecifiedUnits() const { return m_valueInSpecifiedUnits; } function in class:WebCore::SVGLength
85 void newValueSpecifiedUnits(unsigned short, float valueInSpecifiedUnits, ExceptionState&);
129 float fromValue = from.valueInSpecifiedUnits();
130 float toValue = valueInSpecifiedUnits();
144 float fromValueInUserUnits = nonRelativeLengthContext.convertValueToUserUnits(from.valueInSpecifiedUnits(), from.unitMode(), fromType, exceptionState);
152 float toValue = valueInSpecifiedUnits();
H A DSVGLength.cpp179 else if (negativeValuesMode == ForbidNegativeLengths && length.valueInSpecifiedUnits() < 0)
397 return CSSPrimitiveValue::create(length.valueInSpecifiedUnits(), cssType);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableStrokeDasharrayList.cpp50 if (lengths[i].valueInSpecifiedUnits() < 0)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DAnimatedStyleBuilder.cpp140 if (length.valueInSpecifiedUnits() < 0)

Completed in 307 milliseconds