Home
last modified time | relevance | path

Searched refs:LinearAnimation (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium_org/ui/gfx/animation/
Dlinear_animation.cc24 LinearAnimation::LinearAnimation(int frame_rate, in LinearAnimation() function in gfx::LinearAnimation
32 LinearAnimation::LinearAnimation(int duration, in LinearAnimation() function in gfx::LinearAnimation
43 double LinearAnimation::GetCurrentValue() const { in GetCurrentValue()
48 void LinearAnimation::SetCurrentValue(double new_value) { in SetCurrentValue()
56 void LinearAnimation::End() { in End()
66 void LinearAnimation::SetDuration(int duration) { in SetDuration()
74 void LinearAnimation::Step(base::TimeTicks time_now) { in Step()
90 void LinearAnimation::AnimationStarted() { in AnimationStarted()
94 void LinearAnimation::AnimationStopped() { in AnimationStopped()
104 bool LinearAnimation::ShouldSendCanceledFromStop() { in ShouldSendCanceledFromStop()
Danimation_unittest.cc26 class RunAnimation : public LinearAnimation {
29 : LinearAnimation(frame_rate, delegate) { in RunAnimation()
41 class CancelAnimation : public LinearAnimation {
44 : LinearAnimation(duration, frame_rate, delegate) { in CancelAnimation()
56 class EndAnimation : public LinearAnimation {
59 : LinearAnimation(duration, frame_rate, delegate) { in EndAnimation()
148 LinearAnimation animation(100, 60, NULL); in TEST_F()
Dlinear_animation.h17 class GFX_EXPORT LinearAnimation : public Animation {
25 LinearAnimation(int frame_rate, AnimationDelegate* delegate);
28 LinearAnimation(int duration, int frame_rate, AnimationDelegate* delegate);
74 DISALLOW_COPY_AND_ASSIGN(LinearAnimation);
Danimation_container_unittest.cc44 class TestAnimation : public LinearAnimation {
47 : LinearAnimation(20, 20, delegate) { in TestAnimation()
Dslide_animation.h47 class GFX_EXPORT SlideAnimation : public LinearAnimation {
Dthrob_animation.cc61 LinearAnimation::Step(time_now); in Step()
Dslide_animation.cc18 : LinearAnimation(kDefaultFrameRateHz, target), in SlideAnimation()
/external/chromium_org/chrome/browser/ui/autofill/
Dloading_animation.cc20 : LinearAnimation(kDurationMs, kHertz, delegate), in LoadingAnimation()
27 LinearAnimation::Step(time_now); in Step()
36 double base_value = gfx::LinearAnimation::GetCurrentValue(); in GetCurrentValueForDot()
Dloading_animation.h13 class LoadingAnimation : public gfx::LinearAnimation {
Dautofill_dialog_controller_impl.h847 gfx::LinearAnimation card_generated_animation_;
/external/chromium_org/ash/drag_drop/
Ddrag_drop_controller.h20 class LinearAnimation; variable
73 virtual gfx::LinearAnimation* CreateCancelAnimation(
110 scoped_ptr<gfx::LinearAnimation> cancel_animation_;
Ddrag_drop_controller.cc473 gfx::LinearAnimation* DragDropController::CreateCancelAnimation( in CreateCancelAnimation()
477 return new gfx::LinearAnimation(duration, frame_rate, delegate); in CreateCancelAnimation()
Ddrag_drop_controller_unittest.cc133 class CompletableLinearAnimation : public gfx::LinearAnimation {
138 : gfx::LinearAnimation(duration, frame_rate, delegate), in CompletableLinearAnimation()
192 virtual gfx::LinearAnimation* CreateCancelAnimation( in CreateCancelAnimation()
/external/chromium_org/chrome/browser/ui/panels/
Dpanel_bounds_animation.cc23 : gfx::LinearAnimation(kDefaultFramerateHz, target), in PanelBoundsAnimation()
50 return ComputeAnimationValue(gfx::LinearAnimation::GetCurrentValue(), in GetCurrentValue()
Dpanel_bounds_animation.h15 class PanelBoundsAnimation : public gfx::LinearAnimation {
/external/chromium_org/chrome/browser/ui/views/download/
Ddownload_started_animation_views.cc28 class DownloadStartedAnimationViews : public gfx::LinearAnimation,
59 : gfx::LinearAnimation(kMoveTimeMs, kFrameRateHz, NULL), in DownloadStartedAnimationViews()
/external/chromium_org/ui/app_list/views/
Dsearch_result_list_view.h16 class LinearAnimation; variable
102 scoped_ptr<gfx::LinearAnimation> auto_launch_animation_;
Dsearch_result_list_view.cc147 auto_launch_animation_.reset(new gfx::LinearAnimation( in SetAutoLaunchTimeout()
/external/chromium_org/chrome/browser/ui/views/panels/
Dpanel_stack_view.h24 class LinearAnimation; variable
141 scoped_ptr<gfx::LinearAnimation> bounds_animator_;
Dpanel_stack_view.cc246 bounds_animator_.reset(new gfx::LinearAnimation( in EndBatchUpdatePanelBounds()
/external/chromium_org/chrome/browser/ui/views/
Dstatus_bubble_views.cc72 class StatusBubbleViews::StatusViewAnimation : public gfx::LinearAnimation,
438 : gfx::LinearAnimation(kFramerate, this), in StatusViewAnimation()
452 gfx::LinearAnimation::GetCurrentValue(); in GetCurrentOpacity()
470 class StatusBubbleViews::StatusViewExpander : public gfx::LinearAnimation,
475 : gfx::LinearAnimation(kFramerate, this), in StatusViewExpander()
538 gfx::LinearAnimation::GetCurrentValue()); in GetCurrentBubbleWidth()
/external/chromium_org/ash/wm/gestures/
Dlong_press_affordance_handler.h30 class LongPressAffordanceHandler : public gfx::LinearAnimation,
Dlong_press_affordance_handler.cc238 : gfx::LinearAnimation(kAffordanceFrameRateHz, NULL), in LongPressAffordanceHandler()
/external/chromium_org/chrome/browser/ui/views/tabs/
Dtab.h29 class LinearAnimation; variable
337 scoped_ptr<gfx::LinearAnimation> crash_icon_animation_;
/external/chromium_org/ash/touch/
Dtouch_hud_projection.cc59 fadeout_.reset(new gfx::LinearAnimation(kFadeoutDurationInMs, in UpdateTouch()

12