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

  /external/chromium_org/webkit/renderer/compositor_bindings/
web_animation_impl.cc 24 int animation_id,
26 if (!animation_id)
27 animation_id = AnimationIdProvider::NextAnimationId();
49 animation_id,
web_animation_impl.h 23 int animation_id,
web_compositor_support_impl.cc 81 int animation_id) {
82 return new WebAnimationImpl(curve, target, animation_id, 0);
web_compositor_support_impl.h 39 int animation_id);
web_layer_impl.h 90 virtual void removeAnimation(int animation_id);
91 virtual void removeAnimation(int animation_id,
93 virtual void pauseAnimation(int animation_id, double time_offset);
web_layer_impl.cc 198 void WebLayerImpl::removeAnimation(int animation_id) {
199 layer_->RemoveAnimation(animation_id);
203 int animation_id,
206 animation_id,
210 void WebLayerImpl::pauseAnimation(int animation_id, double time_offset) {
211 layer_->PauseAnimation(animation_id, time_offset);
  /external/chromium_org/ui/compositor/
layer_animation_delegate.h 37 virtual void RemoveThreadedAnimation(int animation_id) = 0;
layer_animation_element.cc 403 delegate->RemoveThreadedAnimation(animation_id());
412 delegate->RemoveThreadedAnimation(animation_id());
475 animation_id(),
541 animation_id(),
layer_animation_element.h 174 // Each LayerAnimationElement has a unique animation_id. Elements belonging
177 int animation_id() const { return animation_id_; } function in class:ui::LayerAnimationElement
layer.h 382 virtual void RemoveThreadedAnimation(int animation_id) OVERRIDE;
layer.cc 880 void Layer::RemoveThreadedAnimation(int animation_id) {
883 cc_layer_->RemoveAnimation(animation_id);
891 HasAnimationId(animation_id)),
  /external/chromium_org/cc/animation/
layer_animation_controller.h 39 virtual void PauseAnimation(int animation_id, double time_offset);
40 virtual void RemoveAnimation(int animation_id);
41 virtual void RemoveAnimation(int animation_id,
animation.cc 48 int animation_id,
52 animation_id,
57 int animation_id,
61 id_(animation_id),
animation.h 54 int animation_id,
141 int animation_id,
layer_animation_controller.cc 37 void LayerAnimationController::PauseAnimation(int animation_id,
40 if (active_animations_[i]->id() == animation_id) {
57 void LayerAnimationController::RemoveAnimation(int animation_id) {
62 HasAnimationId(animation_id)),
81 int animation_id,
87 HasAnimationIdAndProperty(animation_id,
layer_animation_controller_unittest.cc 169 int animation_id = local
186 controller_impl->RemoveAnimation(animation_id);
    [all...]
  /external/chromium_org/ui/compositor/test/
test_layer_animation_delegate.h 41 virtual void RemoveThreadedAnimation(int animation_id) OVERRIDE;
test_layer_animation_delegate.cc 98 void TestLayerAnimationDelegate::RemoveThreadedAnimation(int animation_id) {
  /external/chromium_org/cc/layers/
layer.h 325 void PauseAnimation(int animation_id, double time_offset);
326 void RemoveAnimation(int animation_id);
layer.cc 922 void Layer::PauseAnimation(int animation_id, double time_offset) {
923 layer_animation_controller_->PauseAnimation(animation_id, time_offset);
927 void Layer::RemoveAnimation(int animation_id) {
928 layer_animation_controller_->RemoveAnimation(animation_id);
  /external/chromium_org/cc/trees/
layer_tree_host_common_unittest.cc 7266 int animation_id = AddAnimatedTransformToController( local
    [all...]

Completed in 236 milliseconds