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

/external/webkit/Source/WebCore/svg/animation/
H A DSMILTime.cpp28 #include "SMILTime.h"
34 const double SMILTime::unresolvedValue = DBL_MAX;
36 const double SMILTime::indefiniteValue = FLT_MAX;
38 SMILTime WebCore::operator+(const SMILTime& a, const SMILTime& b)
41 return SMILTime::unresolved();
43 return SMILTime::indefinite();
47 SMILTime WebCore::operator-(const SMILTime
[all...]
H A DSMILTime.h35 class SMILTime { class in namespace:WebCore
37 SMILTime() : m_time(0) { } function in class:WebCore::SMILTime
38 SMILTime(double time) : m_time(time) { } function in class:WebCore::SMILTime
39 SMILTime(const SMILTime& o) : m_time(o.m_time) { } function in class:WebCore::SMILTime
41 static SMILTime unresolved() { return unresolvedValue; }
42 static SMILTime indefinite() { return indefiniteValue; }
44 SMILTime& operator=(const SMILTime& o) { m_time = o.m_time; return *this; }
58 inline bool operator==(const SMILTime
[all...]
H A DSVGSMILElement.h29 #include "SMILTime.h"
80 SMILTime dur() const;
81 SMILTime repeatDur() const;
82 SMILTime repeatCount() const;
83 SMILTime maxValue() const;
84 SMILTime minValue() const;
86 SMILTime elapsed() const;
88 SMILTime intervalBegin() const { return m_intervalBegin; }
89 SMILTime intervalEnd() const { return m_intervalEnd; }
90 SMILTime previousIntervalBegi
[all...]
H A DSVGSMILElement.cpp106 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats)
122 , m_intervalBegin(SMILTime::unresolved())
123 , m_intervalEnd(SMILTime::unresolved())
124 , m_previousIntervalBegin(SMILTime::unresolved())
220 SMILTime SVGSMILElement::parseOffsetValue(const String& data)
236 return SMILTime::unresolved();
240 SMILTime SVGSMILElement::parseClockValue(const String& data)
243 return SMILTime::unresolved();
249 return SMILTime::indefinite();
258 return SMILTime
[all...]
H A DSMILTimeContainer.h33 #include "SMILTime.h"
54 SMILTime elapsed() const;
72 void startTimer(SMILTime fireTime, SMILTime minimumDelay = 0);
73 void updateAnimations(SMILTime elapsed);
76 void sortByPriority(Vector<SVGSMILElement*>& smilElements, SMILTime elapsed);
H A DSMILTimeContainer.cpp60 SMILTime SMILTimeContainer::elapsed() const { return 0; }
68 SMILTime nextFireTime = animation->nextProgressTime();
82 SMILTime SMILTimeContainer::elapsed() const
125 void SMILTimeContainer::startTimer(SMILTime fireTime, SMILTime minimumDelay)
133 SMILTime delay = max(fireTime - elapsed(), minimumDelay);
141 SMILTime elapsed = this->elapsed();
156 PriorityCompare(SMILTime elapsed) : m_elapsed(elapsed) {}
160 SMILTime aBegin = a->intervalBegin();
161 SMILTime bBegi
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGAnimationElement.cpp397 SMILTime duration = simpleDuration();
/external/webkit/Source/WebCore/
H A DAndroid.mk1197 svg/animation/SMILTime.cpp \

Completed in 65 milliseconds