OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SMILTime
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTime.cpp
28
#include "core/svg/animation/
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
...]
SMILTime.h
34
class
SMILTime
{
36
SMILTime
() : m_time(0) { }
37
SMILTime
(double time) : m_time(time) { ASSERT(!std::isnan(time)); }
38
SMILTime
(const
SMILTime
& o) : m_time(o.m_time) { }
40
static
SMILTime
unresolved() { return unresolvedValue; }
41
static
SMILTime
indefinite() { return indefiniteValue; }
43
SMILTime
& operator=(const
SMILTime
& o) { m_time = o.m_time; return *this; }
69
SMILTimeWithOrigin(const
SMILTime
& time, Origin origin
[
all
...]
SVGSMILElement.h
31
#include "core/svg/animation/
SMILTime
.h"
81
SMILTime
dur() const;
82
SMILTime
repeatDur() const;
83
SMILTime
repeatCount() const;
84
SMILTime
maxValue() const;
85
SMILTime
minValue() const;
87
SMILTime
elapsed() const;
89
SMILTime
intervalBegin() const { return m_intervalBegin; }
90
SMILTime
intervalEnd() const { return m_intervalEnd; }
91
SMILTime
previousIntervalBegin() const { return m_previousIntervalBegin;
[
all
...]
SMILTimeContainer.h
30
#include "core/svg/animation/
SMILTime
.h"
54
SMILTime
elapsed() const;
63
void setElapsed(
SMILTime
);
71
void startTimer(
SMILTime
fireTime,
SMILTime
minimumDelay = 0);
72
void updateAnimations(
SMILTime
elapsed, bool seekToTime = false);
75
void sortByPriority(Vector<SVGSMILElement*>& smilElements,
SMILTime
elapsed);
SVGSMILElement.cpp
150
SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name,
SMILTime
offset, int repeat)
167
, m_intervalBegin(
SMILTime
::unresolved())
168
, m_intervalEnd(
SMILTime
::unresolved())
169
, m_previousIntervalBegin(
SMILTime
::unresolved())
276
m_intervalBegin =
SMILTime
::unresolved();
277
m_intervalEnd =
SMILTime
::unresolved();
278
m_previousIntervalBegin =
SMILTime
::unresolved();
337
SMILTime
SVGSMILElement::parseOffsetValue(const String& data)
353
return
SMILTime
::unresolved();
357
SMILTime
SVGSMILElement::parseClockValue(const String& data
[
all
...]
SMILTimeContainer.cpp
79
SMILTime
nextFireTime = animation->nextProgressTime();
107
SMILTime
SMILTimeContainer::elapsed() const
141
updateAnimations(
SMILTime
(m_presetStartTime), m_presetStartTime ? true : false);
171
void SMILTimeContainer::setElapsed(
SMILTime
time)
209
void SMILTimeContainer::startTimer(
SMILTime
fireTime,
SMILTime
minimumDelay)
217
SMILTime
delay = max(fireTime - elapsed(), minimumDelay);
239
PriorityCompare(
SMILTime
elapsed) : m_elapsed(elapsed) {}
243
SMILTime
aBegin = a->intervalBegin();
244
SMILTime
bBegin = b->intervalBegin()
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.cpp
272
SMILTime
elapsed = this->elapsed();
285
SMILTime
elapsed = this->elapsed();
442
SMILTime
duration = simpleDuration();
/external/chromium_org/third_party/WebKit/Source/core/
webcore_svg.target.darwin-arm.mk
231
third_party/WebKit/Source/core/svg/animation/
SMILTime
.cpp \
webcore_svg.target.darwin-mips.mk
231
third_party/WebKit/Source/core/svg/animation/
SMILTime
.cpp \
webcore_svg.target.darwin-x86.mk
231
third_party/WebKit/Source/core/svg/animation/
SMILTime
.cpp \
webcore_svg.target.linux-arm.mk
231
third_party/WebKit/Source/core/svg/animation/
SMILTime
.cpp \
webcore_svg.target.linux-mips.mk
231
third_party/WebKit/Source/core/svg/animation/
SMILTime
.cpp \
webcore_svg.target.linux-x86.mk
231
third_party/WebKit/Source/core/svg/animation/
SMILTime
.cpp \
Completed in 152 milliseconds