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

  /external/chromium_org/cc/animation/
animation_registrar.h 15 class LayerAnimationController;
19 typedef base::hash_map<int, LayerAnimationController*> AnimationControllerMap;
29 scoped_refptr<LayerAnimationController> GetAnimationControllerForId(int id);
33 void DidActivateAnimationController(LayerAnimationController* controller);
38 void DidDeactivateAnimationController(LayerAnimationController* controller);
41 void RegisterAnimationController(LayerAnimationController* controller);
44 void UnregisterAnimationController(LayerAnimationController* controller);
animation_registrar.cc 22 scoped_refptr<LayerAnimationController>
24 scoped_refptr<LayerAnimationController> to_return;
26 to_return = LayerAnimationController::Create(id);
36 LayerAnimationController* controller) {
41 LayerAnimationController* controller) {
47 LayerAnimationController* controller) {
52 LayerAnimationController* controller) {
layer_animation_controller.h 35 class CC_EXPORT LayerAnimationController
36 : public base::RefCounted<LayerAnimationController> {
38 static scoped_refptr<LayerAnimationController> Create(int id);
53 LayerAnimationController* controller_impl);
146 friend class base::RefCounted<LayerAnimationController>;
148 explicit LayerAnimationController(int id);
149 virtual ~LayerAnimationController();
155 LayerAnimationController* controller_impl) const;
157 LayerAnimationController* controller_impl) const;
159 LayerAnimationController* controller_impl) const
    [all...]
layer_animation_controller.cc 24 LayerAnimationController::LayerAnimationController(int id)
33 LayerAnimationController::~LayerAnimationController() {
38 scoped_refptr<LayerAnimationController> LayerAnimationController::Create(
40 return make_scoped_refptr(new LayerAnimationController(id));
43 void LayerAnimationController::PauseAnimation(int animation_id,
63 void LayerAnimationController::RemoveAnimation(int animation_id) {
85 void LayerAnimationController::RemoveAnimation
    [all...]
layer_animation_controller_unittest.cc 31 // A LayerAnimationController cannot be ticked at 0.0, since an animation
44 scoped_refptr<LayerAnimationController> controller_impl(
45 LayerAnimationController::Create(0));
48 scoped_refptr<LayerAnimationController> controller(
49 LayerAnimationController::Create(0));
75 scoped_refptr<LayerAnimationController> controller_impl(
76 LayerAnimationController::Create(0));
79 scoped_refptr<LayerAnimationController> controller(
80 LayerAnimationController::Create(0));
119 scoped_refptr<LayerAnimationController> controller_impl
    [all...]
  /external/chromium_org/cc/test/
animation_test_common.h 122 int AddOpacityTransitionToController(LayerAnimationController* controller,
128 int AddAnimatedTransformToController(LayerAnimationController* controller,
133 int AddAnimatedFilterToController(LayerAnimationController* controller,
animation_test_common.cc 250 int AddOpacityTransitionToController(LayerAnimationController* controller,
262 int AddAnimatedTransformToController(LayerAnimationController* controller,
272 int AddAnimatedFilterToController(LayerAnimationController* controller,
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_animation.cc 138 LayerAnimationController* controller_impl =
157 LayerAnimationController* controller =
508 LayerAnimationController* controller_impl =
564 LayerAnimationController* controller =
580 LayerAnimationController* controller =
623 LayerAnimationController* controller =
658 LayerAnimationController* controller_impl =
    [all...]
tree_synchronizer_unittest.cc 77 class FakeLayerAnimationController : public LayerAnimationController {
79 static scoped_refptr<LayerAnimationController> Create() {
80 return static_cast<LayerAnimationController*>(
88 : LayerAnimationController(1),
93 virtual void PushAnimationUpdatesTo(LayerAnimationController* controller_impl)
95 LayerAnimationController::PushAnimationUpdatesTo(controller_impl);
  /external/chromium_org/cc/layers/
layer.h 404 LayerAnimationController* layer_animation_controller() {
408 scoped_refptr<LayerAnimationController> controller);
582 scoped_refptr<LayerAnimationController> layer_animation_controller_;
layer_impl.h 487 LayerAnimationController* layer_animation_controller() {
491 const LayerAnimationController* layer_animation_controller() const {
694 scoped_refptr<LayerAnimationController> layer_animation_controller_;
layer.cc 78 layer_animation_controller_ = LayerAnimationController::Create(layer_id_);
    [all...]

Completed in 625 milliseconds