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

1 2 3 4

  /external/chromium_org/ui/gfx/animation/
tween_unittest.cc 5 #include "ui/gfx/animation/tween.h"
31 Tween::ColorValueBetween(-10.0, 0xFF00FF00, 0xFF00FF00));
33 Tween::ColorValueBetween(-10.0, 0xFF00FF00, 0xFFFF00FF));
35 Tween::ColorValueBetween(0.0, 0xFF00FF00, 0xFFFF00FF));
37 Tween::ColorValueBetween(1.0 / 255, 0xFF00FF00, 0xFFFF00FF));
39 Tween::ColorValueBetween(0.5, 0xFF00FF00, 0xFFFF00FF));
42 Tween::ColorValueBetween(254.0 / 255.0, 0xFF00FF00, 0xFFFF00FF));
44 Tween::ColorValueBetween(1.0, 0xFF00FF00, 0xFFFF00FF));
46 Tween::ColorValueBetween(10.0, 0xFF00FF00, 0xFFFF00FF));
48 Tween::ColorValueBetween(3.0 / 16.0, 0xFF001020, 0xFF4080C0))
    [all...]
tween.h 16 class GFX_EXPORT Tween {
30 // Returns the value based on the tween type. |state| is from 0-1.
57 Tween();
58 ~Tween();
60 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"
22 double Tween::CalculateValue(Tween::Type type, double state) {
75 float blended_premultiplied = Tween::FloatValueBetween(
83 SkColor Tween::ColorValueBetween(double value, SkColor start, SkColor target) {
115 double Tween::DoubleValueBetween(double value, double start, double target) {
120 float Tween::FloatValueBetween(double value, float start, float target) {
125 int Tween::IntValueBetween(double value, int start, int target) {
141 int Tween::LinearIntValueBetween(double value, int start, int target) {
146 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,
35 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"
186 gfx::Tween::Type tween_type() const { return tween_type_; }
187 void set_tween_type(gfx::Tween::Type tween_type) { tween_type_ = tween_type; }
228 gfx::Tween::Type tween_type_;
layer_animator.h 19 #include "ui/gfx/animation/tween.h"
178 // is Tween::LINEAR.
179 void set_tween_type(gfx::Tween::Type tween_type) { tween_type_ = tween_type; }
180 gfx::Tween::Type tween_type() const { return tween_type_; }
330 // The default tween type for implicit transitions
331 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/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/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(gfx::Tween::LINEAR);
  /external/chromium_org/cc/animation/
scroll_offset_animation_curve.cc 12 #include "ui/gfx/animation/tween.h"
56 return gfx::Vector2dF(gfx::Tween::FloatValueBetween(
58 gfx::Tween::FloatValueBetween(
  /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));
  /external/chromium_org/ui/views/animation/
bounds_animator.h 15 #include "ui/gfx/animation/tween.h"
98 // Sets the tween type for new animations. Default is EASE_OUT.
99 void set_tween_type(gfx::Tween::Type type) { tween_type_ = type; }
192 gfx::Tween::Type tween_type_;
  /external/chromium_org/ui/views/controls/
glow_hover_controller.cc 48 animation_.SetTweenType(gfx::Tween::EASE_OUT);
61 animation_.SetTweenType(gfx::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 1897 milliseconds

1 2 3 4