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

  /external/chromium_org/ui/base/animation/
tween.cc 59 double Tween::ValueBetween(double value, double start, double target) {
64 int Tween::ValueBetween(double value, int start, int target) {
80 gfx::Rect Tween::ValueBetween(double value,
83 return gfx::Rect(ValueBetween(value, start_bounds.x(), target_bounds.x()),
84 ValueBetween(value, start_bounds.y(), target_bounds.y()),
85 ValueBetween(value, start_bounds.width(),
87 ValueBetween(value, start_bounds.height(),
92 gfx::Transform Tween::ValueBetween(double value,
  /external/chromium_org/ui/gfx/
interpolated_transform.cc 107 inline float InterpolatedTransform::ValueBetween(float time,
128 return static_cast<float>(Tween::ValueBetween(t, start_value, end_value));
155 float interpolated_degrees = ValueBetween(t, start_degrees_, end_degrees_);
193 result.RotateAbout(axis_, ValueBetween(t, start_degrees_, end_degrees_));
234 float scale_x = ValueBetween(t, start_scale_.x(), end_scale_.x());
235 float scale_y = ValueBetween(t, start_scale_.y(), end_scale_.y());
267 result.Translate(ValueBetween(t, start_pos_.x(), end_pos_.x()),
268 ValueBetween(t, start_pos_.y(), end_pos_.y()));

Completed in 420 milliseconds