HomeSort by relevance Sort by last modified time
    Searched refs:SMILTime (Results 1 - 8 of 8) sorted by null

  /external/webkit/WebCore/svg/animation/
SMILTime.h 35 class SMILTime {
37 SMILTime() : m_time(0) { }
38 SMILTime(double time) : m_time(time) { }
39 SMILTime(const SMILTime& o) : m_time(o.m_time) { }
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& a, const SMILTime& b) { return a.isFinite() && a.value() == b.value();
    [all...]
SMILTime.cpp 28 #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& a, const SMILTime& b
    [all...]
SVGSMILElement.h 32 #include "SMILTime.h"
69 SMILTime dur() const;
70 SMILTime repeatDur() const;
71 SMILTime repeatCount() const;
72 SMILTime maxValue() const;
73 SMILTime minValue() const;
75 SMILTime elapsed() const;
77 SMILTime intervalBegin() const { return m_intervalBegin; }
78 SMILTime intervalEnd() const { return m_intervalEnd; }
79 SMILTime previousIntervalBegin() const { return m_previousIntervalBegin;
    [all...]
SVGSMILElement.cpp 111 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats)
125 , m_intervalBegin(SMILTime::unresolved())
126 , m_intervalEnd(SMILTime::unresolved())
127 , m_previousIntervalBegin(SMILTime::unresolved())
193 SMILTime SVGSMILElement::parseOffsetValue(const String& data)
209 return SMILTime::unresolved();
213 SMILTime SVGSMILElement::parseClockValue(const String& data)
216 return SMILTime::unresolved();
222 return SMILTime::indefinite();
231 return SMILTime::unresolved()
    [all...]
SMILTimeContainer.h 32 #include "SMILTime.h"
53 SMILTime elapsed() const;
71 void startTimer(SMILTime fireTime, SMILTime minimumDelay = 0);
72 void updateAnimations(SMILTime elapsed);
75 void sortByPriority(Vector<SVGSMILElement*>& smilElements, SMILTime elapsed);
SMILTimeContainer.cpp 60 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 bBegin = b->intervalBegin()
    [all...]
  /external/webkit/WebCore/svg/
SVGAnimationElement.cpp 369 SMILTime duration = simpleDuration();
  /external/webkit/WebCore/
Android.mk 889 svg/animation/SMILTime.cpp \

Completed in 249 milliseconds