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

1 2 3 4

  /external/chromium_org/ui/gfx/animation/
tween_unittest.cc 5 #include "ui/gfx/animation/tween.h"
34 Tween::ColorValueBetween(-10.0, 0xFF00FF00, 0xFF00FF00));
36 Tween::ColorValueBetween(-10.0, 0xFF00FF00, 0xFFFF00FF));
38 Tween::ColorValueBetween(0.0, 0xFF00FF00, 0xFFFF00FF));
40 Tween::ColorValueBetween(1.0 / 255, 0xFF00FF00, 0xFFFF00FF));
42 Tween::ColorValueBetween(0.5, 0xFF00FF00, 0xFFFF00FF));
45 Tween::ColorValueBetween(254.0 / 255.0, 0xFF00FF00, 0xFFFF00FF));
47 Tween::ColorValueBetween(1.0, 0xFF00FF00, 0xFFFF00FF));
49 Tween::ColorValueBetween(10.0, 0xFF00FF00, 0xFFFF00FF));
51 Tween::ColorValueBetween(3.0 / 16.0, 0xFF001020, 0xFF4080C0))
    [all...]
tween.h 16 class GFX_EXPORT Tween {
37 // Returns the value based on the tween type. |state| is from 0-1.
64 Tween();
65 ~Tween();
67 DISALLOW_COPY_AND_ASSIGN(Tween);
multi_animation_unittest.cc 15 parts.push_back(MultiAnimation::Part(100, Tween::LINEAR));
16 parts.push_back(MultiAnimation::Part(100, Tween::EASE_OUT));
30 EXPECT_DOUBLE_EQ(Tween::CalculateValue(Tween::EASE_OUT, .2),
36 EXPECT_DOUBLE_EQ(Tween::CalculateValue(Tween::EASE_OUT, .2),
43 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
65 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
81 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
multi_animation.h 11 #include "ui/gfx/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.
slide_animation.h 9 #include "ui/gfx/animation/tween.h"
67 void SetTweenType(Tween::Type tween_type) { tween_type_ = tween_type; }
81 Tween::Type tween_type_;
tween.cc 5 #include "ui/gfx/animation/tween.h"
23 double Tween::CalculateValue(Tween::Type type, double state) {
85 float blended_premultiplied = Tween::FloatValueBetween(
93 SkColor Tween::ColorValueBetween(double value, SkColor start, SkColor target) {
125 double Tween::DoubleValueBetween(double value, double start, double target) {
130 float Tween::FloatValueBetween(double value, float start, float target) {
135 int Tween::IntValueBetween(double value, int start, int target) {
151 int Tween::LinearIntValueBetween(double value, int start, int target) {
156 gfx::Rect Tween::RectValueBetween(double value
    [all...]
animation.cc 9 #include "ui/gfx/animation/tween.h"
65 return Tween::DoubleValueBetween(GetCurrentValue(), start, target);
69 return Tween::IntValueBetween(GetCurrentValue(), start, target);
74 return Tween::RectValueBetween(
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/
float_animation_curve_adapter.h 10 #include "ui/gfx/animation/tween.h"
16 FloatAnimationCurveAdapter(gfx::Tween::Type tween_type,
29 gfx::Tween::Type tween_type_;
float_animation_curve_adapter.cc 10 gfx::Tween::Type tween_type,
39 return gfx::Tween::FloatValueBetween(
40 gfx::Tween::CalculateValue(tween_type_, progress),
scoped_layer_animation_settings.h 15 #include "ui/gfx/animation/tween.h"
43 void SetTweenType(gfx::Tween::Type tween_type);
44 gfx::Tween::Type GetTweenType() const;
61 gfx::Tween::Type old_tween_type_;
transform_animation_curve_adapter.h 11 #include "ui/gfx/animation/tween.h"
20 TransformAnimationCurveAdapter(gfx::Tween::Type tween_type,
38 gfx::Tween::Type tween_type_;
transform_animation_curve_adapter_unittest.cc 33 TransformAnimationCurveAdapter parent_curve(gfx::Tween::LINEAR,
layer_animation_element.h 16 #include "ui/gfx/animation/tween.h"
191 gfx::Tween::Type tween_type() const { return tween_type_; }
192 void set_tween_type(gfx::Tween::Type tween_type) { tween_type_ = tween_type; }
233 gfx::Tween::Type tween_type_;
layer_animator.h 19 #include "ui/gfx/animation/tween.h"
176 // is Tween::LINEAR.
177 void set_tween_type(gfx::Tween::Type tween_type) { tween_type_ = tween_type; }
178 gfx::Tween::Type tween_type() const { return tween_type_; }
333 // The default tween type for implicit transitions
334 gfx::Tween::Type tween_type_;
transform_animation_curve_adapter.cc 10 gfx::Tween::Type tween_type,
50 gfx::Tween::CalculateValue(tween_type_,
  /external/chromium_org/ui/app_list/
app_list_constants.cc 59 const gfx::Tween::Type kFolderFadeInTweenType = gfx::Tween::EASE_IN_2;
63 const gfx::Tween::Type kFolderFadeOutTweenType = gfx::Tween::FAST_OUT_LINEAR_IN;
app_list_constants.h 11 #include "ui/gfx/animation/tween.h"
47 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType;
48 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType;
  /external/chromium_org/chrome/browser/ui/autofill/
loading_animation.cc 8 #include "ui/gfx/animation/tween.h"
48 double value = gfx::Tween::CalculateValue(gfx::Tween::EASE_OUT, base_value);
71 position = gfx::Tween::FloatValueBetween(inter_frame_value,
  /external/chromium_org/ash/system/chromeos/network/
network_icon_animation.cc 20 animation_.SetTweenType(gfx::Tween::LINEAR);
  /external/chromium_org/ash/wm/
window_animations.h 10 #include "ui/gfx/animation/tween.h"
50 // from |window|. |tween_type| specifies the tween type of the cross fade
55 gfx::Tween::Type tween_type);
  /external/chromium_org/cc/animation/
scroll_offset_animation_curve.cc 12 #include "ui/gfx/animation/tween.h"
60 return gfx::Vector2dF(gfx::Tween::FloatValueBetween(
62 gfx::Tween::FloatValueBetween(
  /external/chromium_org/ui/app_list/views/
folder_background_view.cc 58 settings.SetTweenType(gfx::Tween::LINEAR_OUT_SLOW_IN);
62 settings.SetTweenType(gfx::Tween::FAST_OUT_LINEAR_IN);
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_icon_painter.cc 93 parts.push_back(gfx::MultiAnimation::Part(1300, gfx::Tween::LINEAR));
95 parts.push_back(gfx::MultiAnimation::Part(1000, gfx::Tween::EASE_IN));
97 parts.push_back(gfx::MultiAnimation::Part(1300, gfx::Tween::LINEAR));

Completed in 590 milliseconds

1 2 3 4