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

  /external/chromium_org/ui/views/animation/
scroll_animator.cc 38 acceleration_(kDefaultAcceleration) {
47 if (acceleration_ >= 0.0f)
48 acceleration_ = kDefaultAcceleration;
53 duration_ = -v / acceleration_; // in seconds
70 float a_x = velocity_x_ > 0 ? acceleration_ : -acceleration_;
71 float a_y = velocity_y_ > 0 ? acceleration_ : -acceleration_;
scroll_animator.h 35 void set_acceleration(float acceleration) { acceleration_ = acceleration; }
54 float acceleration_; member in class:views::ScrollAnimator

Completed in 121 milliseconds