OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timelineTime
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/events/
AnimationPlayerEvent.cpp
12
,
timelineTime
(0.0)
22
AnimationPlayerEvent::AnimationPlayerEvent(const AtomicString& type, double currentTime, double
timelineTime
)
25
, m_timelineTime(
timelineTime
)
32
, m_timelineTime(initializer.
timelineTime
)
45
double AnimationPlayerEvent::
timelineTime
() const
AnimationPlayerEvent.h
16
double
timelineTime
;
26
static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create(const AtomicString& type, double currentTime, double
timelineTime
)
28
return adoptRefWillBeNoop(new AnimationPlayerEvent(type, currentTime,
timelineTime
));
38
double
timelineTime
() const;
46
AnimationPlayerEvent(const AtomicString& type, double currentTime, double
timelineTime
);
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayer.h
138
void notifyCompositorStartTime(double
timelineTime
);
142
void postCommit(double
timelineTime
);
AnimationPlayer.cpp
220
void AnimationPlayer::postCommit(double
timelineTime
)
238
setCurrentTimeInternal((
timelineTime
- m_compositorState->startTime) * m_playbackRate, TimingUpdateForAnimationFrame);
246
void AnimationPlayer::notifyCompositorStartTime(double
timelineTime
)
254
m_compositorState->startTime =
timelineTime
+ currentTimeInternal() / -m_playbackRate;
261
if (m_startTime ==
timelineTime
) {
282
setStartTimeInternal(
timelineTime
);
284
setStartTimeInternal(
timelineTime
+ currentTimeInternal() / -m_playbackRate);
Completed in 185 milliseconds