HomeSort by relevance Sort by last modified time
    Searched refs:Tween (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/chromium_org/ui/base/animation/
tween.h 15 class UI_EXPORT Tween {
29 // Returns the value based on the tween type. |state| is from 0-1.
43 Tween();
44 ~Tween();
46 DISALLOW_COPY_AND_ASSIGN(Tween);
multi_animation_unittest.cc 14 parts.push_back(MultiAnimation::Part(100, Tween::LINEAR));
15 parts.push_back(MultiAnimation::Part(100, Tween::EASE_OUT));
29 EXPECT_DOUBLE_EQ(Tween::CalculateValue(Tween::EASE_OUT, .2),
35 EXPECT_DOUBLE_EQ(Tween::CalculateValue(Tween::EASE_OUT, .2),
42 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
64 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
80 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
multi_animation.h 11 #include "ui/base/animation/tween.h"
33 Part() : time_ms(0), start_time_ms(0), end_time_ms(0), type(Tween::ZERO) {}
34 Part(int time_ms, Tween::Type type)
43 Tween::Type type;
59 // determined from the tween type of the current part.
tween.cc 5 #include "ui/base/animation/tween.h"
18 double Tween::CalculateValue(Tween::Type type, double state) {
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,
92 gfx::Transform Tween::ValueBetween(double value,
slide_animation.h 9 #include "ui/base/animation/tween.h"
67 void SetTweenType(Tween::Type tween_type) { tween_type_ = tween_type; }
81 Tween::Type tween_type_;
animation.cc 9 #include "ui/base/animation/tween.h"
65 return Tween::ValueBetween(GetCurrentValue(), start, target);
69 return Tween::ValueBetween(GetCurrentValue(), start, target);
74 return Tween::ValueBetween(GetCurrentValue(), start_bounds, target_bounds);
slide_animation.cc 20 tween_type_(Tween::EASE_OUT),
97 state = Tween::CalculateValue(tween_type_, state);
102 if (tween_type_ == Tween::EASE_OUT_SNAP &&
multi_animation.cc 53 current_value_ = Tween::CalculateValue(parts_[current_part_index_].type, 1);
62 current_value_ = Tween::CalculateValue(part.type, percent);
  /external/chromium_org/ui/compositor/
scoped_layer_animation_settings.h 12 #include "ui/base/animation/tween.h"
35 void SetTweenType(Tween::Type tween_type);
36 Tween::Type GetTweenType() const;
44 Tween::Type old_tween_type_;
float_animation_curve_adapter.h 10 #include "ui/base/animation/tween.h"
16 FloatAnimationCurveAdapter(Tween::Type tween_type,
29 Tween::Type tween_type_;
float_animation_curve_adapter.cc 10 Tween::Type tween_type,
39 return Tween::ValueBetween(Tween::CalculateValue(tween_type_, progress),
transform_animation_curve_adapter.h 10 #include "ui/base/animation/tween.h"
18 TransformAnimationCurveAdapter(Tween::Type tween_type,
31 Tween::Type tween_type_;
scoped_layer_animation_settings.cc 55 void ScopedLayerAnimationSettings::SetTweenType(Tween::Type tween_type) {
59 Tween::Type ScopedLayerAnimationSettings::GetTweenType() const {
transform_animation_curve_adapter.cc 10 Tween::Type tween_type,
50 Tween::CalculateValue(tween_type_, progress));
layer_animation_element.cc 10 #include "ui/base/animation/tween.h"
66 Tween::ValueBetween(t, start_, target_));
144 delegate->SetBoundsFromAnimation(Tween::ValueBetween(t, start_, target_));
184 delegate->SetOpacityFromAnimation(Tween::ValueBetween(t, start_, target_));
265 Tween::ValueBetween(t, start_, target_));
306 Tween::ValueBetween(t, start_, target_));
348 Tween::ValueBetween(t,
351 Tween::ValueBetween(t,
354 Tween::ValueBetween(t,
357 Tween::ValueBetween(t
    [all...]
layer_animation_element.h 14 #include "ui/base/animation/tween.h"
171 Tween::Type tween_type() const { return tween_type_; }
172 void set_tween_type(Tween::Type tween_type) { tween_type_ = tween_type; }
211 Tween::Type tween_type_;
layer_animator.h 17 #include "ui/base/animation/tween.h"
173 // is Tween::LINEAR.
174 void set_tween_type(Tween::Type tween_type) { tween_type_ = tween_type; }
175 Tween::Type tween_type() const { return tween_type_; }
322 // The default tween type for implicit transitions
323 Tween::Type tween_type_;
layer_animation_element_unittest.cc 305 // Choose a non-linear Tween type.
306 Tween::Type tween_type = Tween::EASE_IN;
327 EXPECT_FLOAT_EQ(Tween::CalculateValue(tween_type, 0.5),
344 // Choose a non-linear Tween type.
345 Tween::Type tween_type = Tween::EASE_IN;
367 Tween::CalculateValue(tween_type, 0.5));
  /external/chromium_org/ash/wm/workspace/
desktop_background_fade_controller.cc 23 ui::Tween::Type tween_type;
27 tween_type = ui::Tween::EASE_IN_OUT;
31 tween_type = ui::Tween::EASE_IN_OUT;
  /external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.cc 62 ui::Tween::ValueBetween(animation->GetCurrentValue(), 0, 255)));
73 InstantController::kAutoCommitPauseTimeMS, ui::Tween::ZERO));
75 InstantController::kAutoCommitFadeInTimeMS, ui::Tween::EASE_IN));
99 ui::Tween::ValueBetween(value, 0, 255));
  /external/chromium_org/ash/system/chromeos/network/
network_icon_animation.cc 20 animation_.SetTweenType(ui::Tween::LINEAR);
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_icon_painter.cc 93 parts.push_back(ui::MultiAnimation::Part(1300, ui::Tween::LINEAR));
95 parts.push_back(ui::MultiAnimation::Part(1000, ui::Tween::EASE_IN));
97 parts.push_back(ui::MultiAnimation::Part(1300, ui::Tween::LINEAR));
  /external/chromium_org/ui/views/animation/
bounds_animator.h 15 #include "ui/base/animation/tween.h"
98 // Sets the tween type for new animations. Default is EASE_OUT.
99 void set_tween_type(ui::Tween::Type type) { tween_type_ = type; }
192 ui::Tween::Type tween_type_;
  /external/chromium_org/ui/views/controls/
glow_hover_controller.cc 48 animation_.SetTweenType(ui::Tween::EASE_OUT);
61 animation_.SetTweenType(ui::Tween::EASE_IN);
  /external/chromium/chrome/browser/ui/touch/frame/
touch_browser_frame_view.cc 66 animation_->SetTweenType(ui::Tween::LINEAR);
162 browser_view()->set_clip_y(ui::Tween::ValueBetween(
259 ui::Tween::ValueBetween(anim->GetCurrentValue(), kKeyboardHeight, 0));
261 ui::Tween::ValueBetween(anim->GetCurrentValue(), 0, kKeyboardHeight));

Completed in 476 milliseconds

1 2 3 4