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

  /external/webkit/Source/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 29 #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 previousIntervalBegin() const { return m_previousIntervalBegin;
    [all...]
SVGSMILElement.cpp 106 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::unresolved()
    [all...]
SMILTimeContainer.h 33 #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);
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/Source/WebCore/svg/
SVGAnimationElement.cpp 397 SMILTime duration = simpleDuration();
  /external/webkit/Source/WebCore/
Android.mk     [all...]

Completed in 2627 milliseconds