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 21 scoped_refptr<LayerAnimationController>
23 scoped_refptr<LayerAnimationController> to_return;
25 to_return = LayerAnimationController::Create(id);
35 LayerAnimationController* controller) {
40 LayerAnimationController* controller) {
46 LayerAnimationController* controller) {
51 LayerAnimationController* controller) {
layer_animation_controller.h 30 class CC_EXPORT LayerAnimationController
31 : public base::RefCounted<LayerAnimationController> {
33 static scoped_refptr<LayerAnimationController> Create(int id);
50 LayerAnimationController* controller_impl);
104 friend class base::RefCounted<LayerAnimationController>;
106 explicit LayerAnimationController(int id);
107 virtual ~LayerAnimationController();
113 LayerAnimationController* controller_impl) const;
115 LayerAnimationController* controller_impl) const;
117 LayerAnimationController* controller_impl) const
    [all...]
layer_animation_controller.cc 19 LayerAnimationController::LayerAnimationController(int id)
27 LayerAnimationController::~LayerAnimationController() {
32 scoped_refptr<LayerAnimationController> LayerAnimationController::Create(
34 return make_scoped_refptr(new LayerAnimationController(id));
37 void LayerAnimationController::PauseAnimation(int animation_id,
57 void LayerAnimationController::RemoveAnimation(int animation_id) {
80 void LayerAnimationController::RemoveAnimation
    [all...]
layer_animation_controller_unittest.cc 31 scoped_refptr<LayerAnimationController> controller_impl(
32 LayerAnimationController::Create(0));
35 scoped_refptr<LayerAnimationController> controller(
36 LayerAnimationController::Create(0));
56 scoped_refptr<LayerAnimationController> controller_impl(
57 LayerAnimationController::Create(0));
60 scoped_refptr<LayerAnimationController> controller(
61 LayerAnimationController::Create(0));
99 scoped_refptr<LayerAnimationController> controller_impl(
100 LayerAnimationController::Create(0))
    [all...]
  /external/chromium_org/cc/test/
animation_test_common.h 88 int AddOpacityTransitionToController(LayerAnimationController* controller,
94 int AddAnimatedTransformToController(LayerAnimationController* controller,
animation_test_common.cc 176 int AddOpacityTransitionToController(cc::LayerAnimationController* controller,
188 int AddAnimatedTransformToController(cc::LayerAnimationController* controller,
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_animation.cc 140 LayerAnimationController* controller_impl =
157 LayerAnimationController* controller =
316 LayerAnimationController* controller_impl =
370 LayerAnimationController* controller =
385 LayerAnimationController* controller =
425 LayerAnimationController* controller =
460 LayerAnimationController* controller_impl =
tree_synchronizer_unittest.cc 73 class FakeLayerAnimationController : public LayerAnimationController {
75 static scoped_refptr<LayerAnimationController> Create() {
76 return static_cast<LayerAnimationController*>(
84 : LayerAnimationController(1),
89 virtual void PushAnimationUpdatesTo(LayerAnimationController* controller_impl)
91 LayerAnimationController::PushAnimationUpdatesTo(controller_impl);
  /external/chromium_org/cc/layers/
layer.h 331 LayerAnimationController* layer_animation_controller() {
335 scoped_refptr<LayerAnimationController> controller);
474 scoped_refptr<LayerAnimationController> layer_animation_controller_;
layer_impl.h 399 LayerAnimationController* layer_animation_controller() {
565 scoped_refptr<LayerAnimationController> layer_animation_controller_;
layer.cc 64 layer_animation_controller_ = LayerAnimationController::Create(layer_id_);
943 scoped_refptr<LayerAnimationController> controller) {

Completed in 630 milliseconds