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

/external/webkit/Source/WebCore/svg/animation/
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...]

Completed in 15 milliseconds