OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MultiAnimation
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gfx/animation/
multi_animation.cc
15
static int TotalTime(const
MultiAnimation
::Parts& parts) {
24
MultiAnimation
::
MultiAnimation
(const Parts& parts,
35
MultiAnimation
::~
MultiAnimation
() {}
38
base::TimeDelta
MultiAnimation
::GetDefaultTimerInterval() {
42
double
MultiAnimation
::GetCurrentValue() const {
46
void
MultiAnimation
::Step(base::TimeTicks time_now) {
70
void
MultiAnimation
::SetStartTime(base::TimeTicks start_time) {
76
const
MultiAnimation
::Part& MultiAnimation::GetPart(int* time_ms
[
all
...]
multi_animation.h
15
//
MultiAnimation
is an animation that consists of a number of sub animations.
16
// To create a
MultiAnimation
pass in the parts, invoke Start() and the delegate
17
// is notified as the animation progresses. By default
MultiAnimation
runs until
19
class GFX_EXPORT
MultiAnimation
: public Animation {
48
MultiAnimation
(const Parts& parts, base::TimeDelta timer_interval);
49
virtual ~
MultiAnimation
();
58
// Returns the current value. The current value for a
MultiAnimation
is
91
DISALLOW_COPY_AND_ASSIGN(
MultiAnimation
);
Completed in 403 milliseconds