Searched refs:animation_id (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/cc/blink/
H A Dweb_animation_impl.cc27 int animation_id,
29 if (!animation_id)
30 animation_id = AnimationIdProvider::NextAnimationId();
64 animation_id,
24 WebCompositorAnimationImpl( const WebCompositorAnimationCurve& web_curve, TargetProperty target_property, int animation_id, int group_id) argument
H A Dweb_compositor_support_impl.cc97 int animation_id) {
98 return new WebCompositorAnimationImpl(curve, target, animation_id, 0);
94 createAnimation( const blink::WebCompositorAnimationCurve& curve, blink::WebCompositorAnimation::TargetProperty target, int animation_id) argument
H A Dweb_animation_impl.h27 int animation_id,
H A Dweb_compositor_support_impl.h47 int animation_id);
H A Dweb_layer_impl.cc247 void WebLayerImpl::removeAnimation(int animation_id) { argument
248 layer_->RemoveAnimation(animation_id);
252 int animation_id,
255 animation_id, static_cast<Animation::TargetProperty>(target_property));
258 void WebLayerImpl::pauseAnimation(int animation_id, double time_offset) { argument
259 layer_->PauseAnimation(animation_id, time_offset);
251 removeAnimation( int animation_id, blink::WebCompositorAnimation::TargetProperty target_property) argument
H A Dweb_layer_impl.h99 virtual void removeAnimation(int animation_id);
100 virtual void removeAnimation(int animation_id,
102 virtual void pauseAnimation(int animation_id, double time_offset);
/external/chromium_org/ui/compositor/
H A Dlayer_animation_delegate.h39 virtual void RemoveThreadedAnimation(int animation_id) = 0;
H A Dlayer_animation_element.h194 // Each LayerAnimationElement has a unique animation_id. Elements belonging
197 int animation_id() const { return animation_id_; } function in class:ui::LayerAnimationElement
H A Dlayer_animation_element.cc349 delegate->RemoveThreadedAnimation(animation_id());
358 delegate->RemoveThreadedAnimation(animation_id());
421 animation_id(),
476 animation_id(),
550 animation_id(),
H A Dlayer.h396 virtual void RemoveThreadedAnimation(int animation_id) OVERRIDE;
H A Dlayer.cc943 void Layer::RemoveThreadedAnimation(int animation_id) { argument
946 cc_layer_->RemoveAnimation(animation_id);
954 HasAnimationId(animation_id)),
/external/chromium_org/cc/animation/
H A Dlayer_animation_controller.h43 void PauseAnimation(int animation_id, base::TimeDelta time_offset);
44 void RemoveAnimation(int animation_id);
45 void RemoveAnimation(int animation_id,
H A Danimation.cc49 int animation_id,
53 animation_id,
58 int animation_id,
62 id_(animation_id),
47 Create( scoped_ptr<AnimationCurve> curve, int animation_id, int group_id, TargetProperty target_property) argument
57 Animation(scoped_ptr<AnimationCurve> curve, int animation_id, int group_id, TargetProperty target_property) argument
H A Danimation.h62 int animation_id,
168 int animation_id,
H A Dlayer_animation_controller.cc43 void LayerAnimationController::PauseAnimation(int animation_id, argument
46 if (animations_[i]->id() == animation_id) {
63 void LayerAnimationController::RemoveAnimation(int animation_id) { argument
67 HasAnimationId(animation_id)),
86 int animation_id,
92 HasAnimationIdAndProperty(animation_id, target_property)),
85 RemoveAnimation( int animation_id, Animation::TargetProperty target_property) argument
H A Dlayer_animation_controller_unittest.cc267 int animation_id = controller->GetAnimation(Animation::Opacity)->id(); local
292 animation_id,
318 int animation_id = local
339 controller_impl->RemoveAnimation(animation_id);
/external/chromium_org/ui/compositor/test/
H A Dtest_layer_animation_delegate.cc98 void TestLayerAnimationDelegate::RemoveThreadedAnimation(int animation_id) { argument
H A Dtest_layer_animation_delegate.h41 virtual void RemoveThreadedAnimation(int animation_id) OVERRIDE;
/external/chromium_org/cc/layers/
H A Dlayer.h401 void PauseAnimation(int animation_id, double time_offset);
402 void RemoveAnimation(int animation_id);
H A Dlayer.cc1150 void Layer::PauseAnimation(int animation_id, double time_offset) { argument
1152 animation_id, base::TimeDelta::FromSecondsD(time_offset));
1156 void Layer::RemoveAnimation(int animation_id) { argument
1157 layer_animation_controller_->RemoveAnimation(animation_id);
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_common_unittest.cc5227 int animation_id = AddAnimatedTransformToController( local
5244 child_scale->layer_animation_controller()->RemoveAnimation(animation_id);

Completed in 273 milliseconds