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

  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTime.cpp 28 #include "core/svg/animation/SMILTime.h"
34 SMILTime blink::operator*(const SMILTime& a, const SMILTime& b)
38 return SMILTime(0);
SMILTime.h 35 class SMILTime {
37 SMILTime() : m_time(0) { }
38 SMILTime(double time) : m_time(time) { }
40 static SMILTime unresolved() { return std::numeric_limits<double>::quiet_NaN(); }
41 static SMILTime indefinite() { return std::numeric_limits<double>::infinity(); }
65 SMILTimeWithOrigin(const SMILTime& time, Origin origin)
71 const SMILTime& time() const { return m_time; }
75 SMILTime m_time;
81 SMILInterval(const SMILTime& begin, const SMILTime& end) : begin(begin), end(end) {
    [all...]
SVGSMILElement.h 32 #include "core/svg/animation/SMILTime.h"
83 SMILTime dur() const;
84 SMILTime repeatDur() const;
85 SMILTime repeatCount() const;
86 SMILTime maxValue() const;
87 SMILTime minValue() const;
89 SMILTime elapsed() const;
91 SMILTime intervalBegin() const { return m_interval.begin; }
92 SMILTime previousIntervalBegin() const { return m_previousIntervalBegin; }
93 SMILTime simpleDuration() const
    [all...]
SMILTimeContainer.h 30 #include "core/svg/animation/SMILTime.h"
56 SMILTime elapsed() const;
64 void setElapsed(SMILTime);
88 void scheduleAnimationFrame(SMILTime fireTime);
91 void updateAnimationsAndScheduleFrameIfNeeded(SMILTime elapsed, bool seekToTime = false);
92 SMILTime updateAnimations(SMILTime elapsed, bool seekToTime = false);
SVGSMILElement.cpp 162 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat)
180 , m_interval(SMILInterval(SMILTime::unresolved(), SMILTime::unresolved()))
181 , m_previousIntervalBegin(SMILTime::unresolved())
301 m_interval.begin = SMILTime::unresolved();
302 m_interval.end = SMILTime::unresolved();
303 m_previousIntervalBegin = SMILTime::unresolved();
362 SMILTime SVGSMILElement::parseOffsetValue(const String& data)
377 if (!ok || !SMILTime(result).isFinite())
378 return SMILTime::unresolved()
    [all...]
SMILTimeContainer.cpp 94 SMILTime nextFireTime = animation->nextProgressTime();
142 SMILTime SMILTimeContainer::elapsed() const
174 SMILTime earliestFireTime = updateAnimations(SMILTime(m_presetStartTime), m_presetStartTime ? true : false);
189 SMILTime delay = earliestFireTime - elapsed();
216 void SMILTimeContainer::setElapsed(SMILTime time)
260 void SMILTimeContainer::scheduleAnimationFrame(SMILTime fireTime)
265 SMILTime delay = fireTime - elapsed();
308 PriorityCompare(SMILTime elapsed) : m_elapsed(elapsed) {}
312 SMILTime aBegin = a->intervalBegin()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.cpp 251 SMILTime elapsed = this->elapsed();
264 SMILTime elapsed = this->elapsed();
423 SMILTime duration = simpleDuration();
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_svg.target.darwin-arm.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.darwin-arm64.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.darwin-mips.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.darwin-mips64.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.darwin-x86.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.darwin-x86_64.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.linux-arm.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.linux-arm64.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.linux-mips.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.linux-mips64.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.linux-x86.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \
webcore_svg.target.linux-x86_64.mk 242 third_party/WebKit/Source/core/svg/animation/SMILTime.cpp \

Completed in 387 milliseconds