HomeSort by relevance Sort by last modified time
    Searched refs:monotonic_time (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/cc/animation/
animation_events.cc 13 double monotonic_time)
18 monotonic_time(monotonic_time),
animation_delegate.h 19 base::TimeTicks monotonic_time,
23 base::TimeTicks monotonic_time,
animation.h 63 void SetRunState(RunState run_state, double monotonic_time);
72 void set_start_time(double monotonic_time) { start_time_ = monotonic_time; }
76 void set_time_offset(double monotonic_time) { time_offset_ = monotonic_time; }
78 void Suspend(double monotonic_time);
79 void Resume(double monotonic_time);
88 bool IsFinishedAt(double monotonic_time) const;
119 double TrimTimeToCurrentIteration(double monotonic_time) const;
animation_events.h 24 double monotonic_time);
30 double monotonic_time; member in struct:cc::AnimationEvent
animation.cc 83 void Animation::SetRunState(RunState run_state, double monotonic_time) {
108 total_paused_time_ += monotonic_time - pause_time_;
110 pause_time_ = monotonic_time;
134 void Animation::Suspend(double monotonic_time) {
135 SetRunState(Paused, monotonic_time);
139 void Animation::Resume(double monotonic_time) {
141 SetRunState(Running, monotonic_time);
144 bool Animation::IsFinishedAt(double monotonic_time) const {
153 iterations_ * curve_->Duration() <= (monotonic_time -
159 double Animation::TrimTimeToCurrentIteration(double monotonic_time) const
    [all...]
layer_animation_controller.h 55 void Animate(double monotonic_time);
56 void AccumulatePropertyUpdates(double monotonic_time,
130 void StartAnimations(double monotonic_time);
131 void PromoteStartedAnimations(double monotonic_time,
133 void MarkFinishedAnimations(double monotonic_time);
134 void MarkAnimationsForDeletion(double monotonic_time,
138 void TickAnimations(double monotonic_time);
layer_animation_controller.cc 126 void LayerAnimationController::Animate(double monotonic_time) {
127 DCHECK(monotonic_time);
131 StartAnimations(monotonic_time);
132 TickAnimations(monotonic_time);
133 last_tick_time_ = monotonic_time;
137 double monotonic_time,
147 double trimmed = animation->TrimTimeToCurrentIteration(monotonic_time);
154 monotonic_time);
167 monotonic_time);
180 monotonic_time);
285 base::TimeTicks monotonic_time = base::TimeTicks::FromInternalValue( local
318 base::TimeTicks monotonic_time = base::TimeTicks::FromInternalValue( local
    [all...]
layer_animation_controller_unittest.cc 771 base::TimeTicks monotonic_time,
778 base::TimeTicks monotonic_time,
    [all...]
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_to_cc_animation_delegate_adapter.cc 17 base::TimeTicks monotonic_time,
21 (monotonic_time - base::TimeTicks()).InSecondsF(),
27 base::TimeTicks monotonic_time,
31 (monotonic_time - base::TimeTicks()).InSecondsF(),
web_to_cc_animation_delegate_adapter.h 24 base::TimeTicks monotonic_time,
28 base::TimeTicks monotonic_time,
web_animation_impl.h 33 virtual void setStartTime(double monotonic_time);
35 virtual void setTimeOffset(double monotonic_time);
web_animation_impl.cc 77 void WebAnimationImpl::setStartTime(double monotonic_time) {
78 animation_->set_start_time(monotonic_time);
85 void WebAnimationImpl::setTimeOffset(double monotonic_time) {
86 animation_->set_time_offset(monotonic_time);
  /external/chromium_org/ui/gl/
sync_control_vsync_provider.cc 64 struct timespec monotonic_time; local
66 clock_gettime(CLOCK_MONOTONIC, &monotonic_time);
72 monotonic_time.tv_sec * base::Time::kMicrosecondsPerSecond +
73 monotonic_time.tv_nsec / base::Time::kNanosecondsPerMicrosecond;
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_animation.cc 42 virtual void Animate(base::TimeTicks monotonic_time) OVERRIDE {
153 base::TimeTicks monotonic_time,
156 start_time_ = monotonic_time;
195 base::TimeTicks monotonic_time) OVERRIDE {
233 base::TimeTicks monotonic_time) OVERRIDE {
247 base::TimeTicks monotonic_time,
278 base::TimeTicks monotonic_time) OVERRIDE {
320 base::TimeTicks monotonic_time,
416 base::TimeTicks monotonic_time) OVERRIDE {
457 base::TimeTicks monotonic_time) OVERRIDE
    [all...]
layer_tree_host_perftest.cc 56 virtual void Animate(base::TimeTicks monotonic_time) OVERRIDE {
350 base::TimeTicks monotonic_time) OVERRIDE {
353 start_time_ = monotonic_time;
357 float seconds = (monotonic_time - start_time_).InSecondsF();
layer_tree_host_impl.h 168 virtual void Animate(base::TimeTicks monotonic_time,
440 virtual void AnimateLayers(base::TimeTicks monotonic_time,
467 void AnimatePageScale(base::TimeTicks monotonic_time);
468 void AnimateScrollbars(base::TimeTicks monotonic_time);
469 void AnimateTopControls(base::TimeTicks monotonic_time);
layer_tree_host_impl.cc 396 void LayerTreeHostImpl::Animate(base::TimeTicks monotonic_time,
399 input_handler_client_->Animate(monotonic_time);
400 AnimatePageScale(monotonic_time);
401 AnimateLayers(monotonic_time, wall_clock_time);
402 AnimateScrollbars(monotonic_time);
403 AnimateTopControls(monotonic_time);
2536 double monotonic_time = (time - base::TimeTicks()).InSecondsF(); local
    [all...]
layer_tree_host.cc 1175 double monotonic_time = (time - base::TimeTicks()).InSecondsF(); local
    [all...]
thread_proxy.cc 1116 base::TimeTicks monotonic_time = local
    [all...]
  /external/chromium_org/cc/test/
layer_tree_test.h 54 base::TimeTicks monotonic_time) {}
58 base::TimeTicks monotonic_time) {}
61 virtual void Animate(base::TimeTicks monotonic_time) {}
82 base::TimeTicks monotonic_time,
86 base::TimeTicks monotonic_time,
layer_tree_test.cc 174 virtual void AnimateLayers(base::TimeTicks monotonic_time,
176 test_hooks_->WillAnimateLayers(this, monotonic_time);
177 LayerTreeHostImpl::AnimateLayers(monotonic_time, wall_clock_time);
178 test_hooks_->AnimateLayers(this, monotonic_time);
223 virtual void Animate(double monotonic_time) OVERRIDE {
225 monotonic_time * base::Time::kMicrosecondsPerSecond));
  /external/chromium_org/cc/input/
top_controls_manager.h 64 gfx::Vector2dF Animate(base::TimeTicks monotonic_time);
top_controls_manager.cc 159 gfx::Vector2dF TopControlsManager::Animate(base::TimeTicks monotonic_time) {
163 double time = (monotonic_time - base::TimeTicks()).InMillisecondsF();
168 if (IsAnimationCompleteAtTime(monotonic_time))
  /external/chromium_org/ui/compositor/
layer_animation_sequence.cc 229 event.monotonic_time * base::Time::kMicrosecondsPerSecond));
layer_animator.cc 337 event.monotonic_time * base::Time::kMicrosecondsPerSecond);

Completed in 166 milliseconds