HomeSort by relevance Sort by last modified time
    Searched defs:SVGNumber (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGNumber.cpp 32 #include "core/svg/SVGNumber.h"
39 SVGNumber::SVGNumber(float value)
44 PassRefPtr<SVGNumber> SVGNumber::clone() const
49 String SVGNumber::valueAsString() const
55 bool SVGNumber::parse(const CharType*& ptr, const CharType* end)
70 void SVGNumber::setValueAsString(const String& string, ExceptionState& exceptionState)
94 void SVGNumber::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement*)
99 void SVGNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCo (…)
    [all...]
SVGNumber.h 41 class SVGNumber : public SVGPropertyHelper<SVGNumber> {
43 // SVGNumber has a tear-off type, but SVGAnimatedNumber uses primitive type.
47 static PassRefPtr<SVGNumber> create(float value = 0.0f)
49 return adoptRef(new SVGNumber(value));
52 virtual PassRefPtr<SVGNumber> clone() const;
67 explicit SVGNumber(float);
75 inline PassRefPtr<SVGNumber> toSVGNumber(PassRefPtr<SVGPropertyBase> passBase)
78 ASSERT(base->type() == SVGNumber::classType());
79 return static_pointer_cast<SVGNumber>(base.release())
    [all...]

Completed in 2842 milliseconds