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

  /external/chromium_org/cc/animation/
keyframed_animation_curve.h 34 class CC_EXPORT ColorKeyframe : public Keyframe {
36 static scoped_ptr<ColorKeyframe> Create(
40 virtual ~ColorKeyframe();
44 scoped_ptr<ColorKeyframe> Clone() const;
47 ColorKeyframe(double time,
123 void AddKeyframe(scoped_ptr<ColorKeyframe> keyframe);
137 ScopedPtrVector<ColorKeyframe> keyframes_;
keyframed_animation_curve.cc 61 scoped_ptr<ColorKeyframe> ColorKeyframe::Create(
66 new ColorKeyframe(time, value, timing_function.Pass()));
69 ColorKeyframe::ColorKeyframe(double time,
75 ColorKeyframe::~ColorKeyframe() {}
77 SkColor ColorKeyframe::Value() const { return value_; }
79 scoped_ptr<ColorKeyframe> ColorKeyframe::Clone() const
    [all...]
keyframed_animation_curve_unittest.cc 33 ColorKeyframe::Create(0.0, color, scoped_ptr<TimingFunction>()));
50 ColorKeyframe::Create(0.0, color_a, scoped_ptr<TimingFunction>()));
52 ColorKeyframe::Create(1.0, color_b, scoped_ptr<TimingFunction>()));
73 ColorKeyframe::Create(0.0, color_a, scoped_ptr<TimingFunction>()));
75 ColorKeyframe::Create(1.0, color_b, scoped_ptr<TimingFunction>()));
77 ColorKeyframe::Create(2.0, color_c, scoped_ptr<TimingFunction>()));
96 ColorKeyframe::Create(0.0, color_a, scoped_ptr<TimingFunction>()));
98 ColorKeyframe::Create(1.0, color_a, scoped_ptr<TimingFunction>()));
100 ColorKeyframe::Create(1.0, color_b, scoped_ptr<TimingFunction>()));
102 ColorKeyframe::Create(2.0, color_b, scoped_ptr<TimingFunction>()))
    [all...]

Completed in 24 milliseconds