Searched refs:monotonic_time (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/cc/animation/
H A Danimation_events.cc13 base::TimeTicks monotonic_time)
18 monotonic_time(monotonic_time),
9 AnimationEvent(AnimationEvent::Type type, int layer_id, int group_id, Animation::TargetProperty target_property, base::TimeTicks monotonic_time) argument
H A Danimation_delegate.h16 base::TimeTicks monotonic_time,
19 base::TimeTicks monotonic_time,
H A Danimation_events.h24 base::TimeTicks monotonic_time);
30 base::TimeTicks monotonic_time; member in struct:cc::AnimationEvent
H A Danimation.h73 void SetRunState(RunState run_state, base::TimeTicks monotonic_time);
88 void set_start_time(base::TimeTicks monotonic_time) { argument
89 start_time_ = monotonic_time;
94 void set_time_offset(base::TimeDelta monotonic_time) { argument
95 time_offset_ = monotonic_time;
98 void Suspend(base::TimeTicks monotonic_time);
99 void Resume(base::TimeTicks monotonic_time);
112 bool IsFinishedAt(base::TimeTicks monotonic_time) const;
119 bool InEffect(base::TimeTicks monotonic_time) const;
145 double TrimTimeToCurrentIteration(base::TimeTicks monotonic_time) cons
[all...]
H A Danimation.cc86 base::TimeTicks monotonic_time) {
111 total_paused_time_ += (monotonic_time - pause_time_);
113 pause_time_ = monotonic_time;
137 void Animation::Suspend(base::TimeTicks monotonic_time) { argument
138 SetRunState(Paused, monotonic_time);
142 void Animation::Resume(base::TimeTicks monotonic_time) { argument
144 SetRunState(Running, monotonic_time);
147 bool Animation::IsFinishedAt(base::TimeTicks monotonic_time) const {
159 (monotonic_time + time_offset_ - start_time_ - total_paused_time_)
163 bool Animation::InEffect(base::TimeTicks monotonic_time) cons
85 SetRunState(RunState run_state, base::TimeTicks monotonic_time) argument
[all...]
H A Dlayer_animation_controller.h55 void Animate(base::TimeTicks monotonic_time);
56 void AccumulatePropertyUpdates(base::TimeTicks monotonic_time,
161 void StartAnimations(base::TimeTicks monotonic_time);
162 void PromoteStartedAnimations(base::TimeTicks monotonic_time,
164 void MarkFinishedAnimations(base::TimeTicks monotonic_time);
165 void MarkAnimationsForDeletion(base::TimeTicks monotonic_time,
169 void TickAnimations(base::TimeTicks monotonic_time);
H A Dlayer_animation_controller.cc126 void LayerAnimationController::Animate(base::TimeTicks monotonic_time) { argument
127 DCHECK(!monotonic_time.is_null());
132 StartAnimations(monotonic_time);
133 TickAnimations(monotonic_time);
134 last_tick_time_ = monotonic_time;
138 base::TimeTicks monotonic_time,
148 if (!animation->InEffect(monotonic_time))
151 double trimmed = animation->TrimTimeToCurrentIteration(monotonic_time);
158 monotonic_time);
172 monotonic_time);
137 AccumulatePropertyUpdates( base::TimeTicks monotonic_time, AnimationEventsVector* events) argument
620 StartAnimations(base::TimeTicks monotonic_time) argument
708 PromoteStartedAnimations( base::TimeTicks monotonic_time, AnimationEventsVector* events) argument
734 MarkFinishedAnimations( base::TimeTicks monotonic_time) argument
744 MarkAnimationsForDeletion( base::TimeTicks monotonic_time, AnimationEventsVector* events) argument
851 TickAnimations(base::TimeTicks monotonic_time) argument
[all...]
/external/chromium_org/cc/blink/
H A Dweb_to_cc_animation_delegate_adapter.cc16 base::TimeTicks monotonic_time,
19 (monotonic_time - base::TimeTicks()).InSecondsF(),
25 base::TimeTicks monotonic_time,
28 (monotonic_time - base::TimeTicks()).InSecondsF(),
15 NotifyAnimationStarted( base::TimeTicks monotonic_time, cc::Animation::TargetProperty target_property) argument
24 NotifyAnimationFinished( base::TimeTicks monotonic_time, cc::Animation::TargetProperty target_property) argument
H A Dweb_to_cc_animation_delegate_adapter.h25 base::TimeTicks monotonic_time,
28 base::TimeTicks monotonic_time,
H A Dweb_animation_impl.h39 virtual void setStartTime(double monotonic_time);
41 virtual void setTimeOffset(double monotonic_time);
H A Dweb_animation_impl.cc102 void WebCompositorAnimationImpl::setStartTime(double monotonic_time) { argument
104 monotonic_time * base::Time::kMicrosecondsPerSecond));
111 void WebCompositorAnimationImpl::setTimeOffset(double monotonic_time) { argument
112 animation_->set_time_offset(base::TimeDelta::FromSecondsD(monotonic_time));
/external/chromium_org/ui/gl/
H A Dsync_control_vsync_provider.cc66 struct timespec monotonic_time; local
68 clock_gettime(CLOCK_MONOTONIC, &monotonic_time);
74 monotonic_time.tv_sec * base::Time::kMicrosecondsPerSecond +
75 monotonic_time.tv_nsec / base::Time::kNanosecondsPerMicrosecond;
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest_animation.cc150 base::TimeTicks monotonic_time,
153 start_time_ = monotonic_time;
192 base::TimeTicks monotonic_time) OVERRIDE {
230 base::TimeTicks monotonic_time) OVERRIDE {
243 base::TimeTicks monotonic_time,
274 base::TimeTicks monotonic_time) OVERRIDE {
318 base::TimeTicks monotonic_time) OVERRIDE {
319 EXPECT_GE(monotonic_time, last_tick_time_);
320 last_tick_time_ = monotonic_time;
370 base::TimeTicks monotonic_time,
[all...]
H A Dlayer_tree_host_impl.h184 virtual void Animate(base::TimeTicks monotonic_time);
495 virtual void AnimateLayers(base::TimeTicks monotonic_time);
522 void AnimatePageScale(base::TimeTicks monotonic_time);
523 void AnimateScrollbars(base::TimeTicks monotonic_time);
524 void AnimateTopControls(base::TimeTicks monotonic_time);
H A Dlayer_tree_host_impl.cc413 void LayerTreeHostImpl::Animate(base::TimeTicks monotonic_time) { argument
415 input_handler_client_->Animate(monotonic_time);
416 AnimatePageScale(monotonic_time);
417 AnimateLayers(monotonic_time);
418 AnimateScrollbars(monotonic_time);
419 AnimateTopControls(monotonic_time);
2952 void LayerTreeHostImpl::AnimatePageScale(base::TimeTicks monotonic_time) { argument
2959 page_scale_animation_->StartAnimation(monotonic_time);
2962 page_scale_animation_->PageScaleFactorAtTime(monotonic_time) /
2965 page_scale_animation_->ScrollOffsetAtTime(monotonic_time);
3001 AnimateLayers(base::TimeTicks monotonic_time) argument
[all...]
H A Dlayer_tree_host.cc1199 void LayerTreeHost::AnimateLayers(base::TimeTicks monotonic_time) { argument
1211 (*iter).second->Animate(monotonic_time);
/external/chromium_org/cc/input/
H A Dpage_scale_animation.cc192 float PageScaleAnimation::InterpAtTime(base::TimeTicks monotonic_time) const {
194 DCHECK(monotonic_time >= start_time_);
195 if (IsAnimationCompleteAtTime(monotonic_time))
198 (monotonic_time - start_time_).InSecondsF() / duration_.InSecondsF();
H A Dtop_controls_manager.h64 gfx::Vector2dF Animate(base::TimeTicks monotonic_time);
H A Dtop_controls_manager.cc166 gfx::Vector2dF TopControlsManager::Animate(base::TimeTicks monotonic_time) { argument
170 double time = (monotonic_time - base::TimeTicks()).InMillisecondsF();
175 if (IsAnimationCompleteAtTime(monotonic_time))
/external/chromium_org/cc/test/
H A Dlayer_tree_test.h56 base::TimeTicks monotonic_time) {}
60 base::TimeTicks monotonic_time) {}
89 virtual void NotifyAnimationStarted(base::TimeTicks monotonic_time,
93 base::TimeTicks monotonic_time,
55 AnimateLayers(LayerTreeHostImpl* host_impl, base::TimeTicks monotonic_time) argument
59 WillAnimateLayers(LayerTreeHostImpl* host_impl, base::TimeTicks monotonic_time) argument
H A Dlayer_tree_test.cc231 virtual void AnimateLayers(base::TimeTicks monotonic_time) OVERRIDE {
232 test_hooks_->WillAnimateLayers(this, monotonic_time);
233 LayerTreeHostImpl::AnimateLayers(monotonic_time);
234 test_hooks_->AnimateLayers(this, monotonic_time);
/external/chromium_org/ui/compositor/
H A Dlayer_animation_sequence.cc222 elements_[current_index]->set_effective_start_time(event.monotonic_time);
H A Dlayer_animator.cc323 base::TimeTicks start_time = event.monotonic_time;
/external/chromium_org/cc/layers/
H A Dlayer_impl.h113 base::TimeTicks monotonic_time,
116 base::TimeTicks monotonic_time,
H A Dlayer_impl.cc1557 base::TimeTicks monotonic_time,
1556 NotifyAnimationFinished( base::TimeTicks monotonic_time, Animation::TargetProperty target_property) argument

Completed in 6466 milliseconds

12