OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnimationCurve
(Results
1 - 25
of
29
) sorted by null
1
2
/external/chromium_org/cc/animation/
animation_curve.cc
12
const ColorAnimationCurve*
AnimationCurve
::ToColorAnimationCurve() const {
13
DCHECK(Type() ==
AnimationCurve
::Color);
17
AnimationCurve
::CurveType ColorAnimationCurve::Type() const { return Color; }
19
const FloatAnimationCurve*
AnimationCurve
::ToFloatAnimationCurve() const {
20
DCHECK(Type() ==
AnimationCurve
::Float);
24
AnimationCurve
::CurveType FloatAnimationCurve::Type() const {
28
const TransformAnimationCurve*
AnimationCurve
::ToTransformAnimationCurve()
30
DCHECK(Type() ==
AnimationCurve
::Transform);
34
AnimationCurve
::CurveType TransformAnimationCurve::Type() const {
38
const FilterAnimationCurve*
AnimationCurve
::ToFilterAnimationCurve() const
[
all
...]
animation_curve.h
27
class CC_EXPORT
AnimationCurve
{
31
virtual ~
AnimationCurve
() {}
35
virtual scoped_ptr<
AnimationCurve
> Clone() const = 0;
46
class CC_EXPORT ColorAnimationCurve : public
AnimationCurve
{
56
class CC_EXPORT FloatAnimationCurve : public
AnimationCurve
{
66
class CC_EXPORT TransformAnimationCurve : public
AnimationCurve
{
82
class CC_EXPORT FilterAnimationCurve : public
AnimationCurve
{
animation.h
14
class
AnimationCurve
;
16
// An Animation contains all the state required to play an
AnimationCurve
.
51
static scoped_ptr<Animation> Create(scoped_ptr<
AnimationCurve
> curve,
95
AnimationCurve
* curve() { return curve_.get(); }
96
const
AnimationCurve
* curve() const { return curve_.get(); }
132
Animation(scoped_ptr<
AnimationCurve
> curve,
137
scoped_ptr<
AnimationCurve
> curve_;
scroll_offset_animation_curve.h
16
class CC_EXPORT ScrollOffsetAnimationCurve : public
AnimationCurve
{
27
//
AnimationCurve
implementation
30
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
scroll_offset_animation_curve.cc
66
AnimationCurve
::CurveType ScrollOffsetAnimationCurve::Type() const {
70
scoped_ptr<
AnimationCurve
> ScrollOffsetAnimationCurve::Clone() const {
77
return curve_clone.PassAs<
AnimationCurve
>();
keyframed_animation_curve.h
125
//
AnimationCurve
implementation
127
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
151
//
AnimationCurve
implementation
153
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
178
//
AnimationCurve
implementation
180
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
207
//
AnimationCurve
implementation
209
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
timing_function.h
41
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
keyframed_animation_curve.cc
44
scoped_ptr<
AnimationCurve
> curve(timing_function->Clone());
185
scoped_ptr<
AnimationCurve
> KeyframedColorAnimationCurve::Clone() const {
190
return to_return.PassAs<
AnimationCurve
>();
232
scoped_ptr<
AnimationCurve
> KeyframedFloatAnimationCurve::Clone() const {
237
return to_return.PassAs<
AnimationCurve
>();
277
scoped_ptr<
AnimationCurve
> KeyframedTransformAnimationCurve::Clone() const {
282
return to_return.PassAs<
AnimationCurve
>();
354
scoped_ptr<
AnimationCurve
> KeyframedFilterAnimationCurve::Clone() const {
359
return to_return.PassAs<
AnimationCurve
>();
scroll_offset_animation_curve_unittest.cc
70
EXPECT_EQ(
AnimationCurve
::ScrollOffset, curve->Type());
96
scoped_ptr<
AnimationCurve
> clone(curve->Clone().Pass());
98
EXPECT_EQ(
AnimationCurve
::ScrollOffset, clone->Type());
layer_animation_controller_unittest.cc
28
scoped_ptr<Animation> CreateAnimation(scoped_ptr<
AnimationCurve
> curve,
356
scoped_ptr<
AnimationCurve
>(new FakeFloatTransition(1.0, 0.f, 1.f)).Pass(),
385
scoped_ptr<
AnimationCurve
>(new FakeFloatTransition(1.0, 0.f, 1.f)).Pass(),
435
curve.PassAs<
AnimationCurve
>(), 1, 0, Animation::Transform));
486
curve.PassAs<
AnimationCurve
>(), 1, 0, Animation::Filter));
535
curve.PassAs<
AnimationCurve
>(), 1, 0, Animation::Filter));
587
curve.PassAs<
AnimationCurve
>(), 1, 0, Animation::ScrollOffset));
665
curve.PassAs<
AnimationCurve
>(), 1, 0, Animation::ScrollOffset));
736
curve.PassAs<
AnimationCurve
>(), 1, 0, Animation::ScrollOffset));
[
all
...]
animation.cc
48
scoped_ptr<
AnimationCurve
> curve,
57
Animation::Animation(scoped_ptr<
AnimationCurve
> curve,
timing_function.cc
91
scoped_ptr<
AnimationCurve
> CubicBezierTimingFunction::Clone() const {
93
new CubicBezierTimingFunction(*this)).PassAs<
AnimationCurve
>();
/external/chromium_org/webkit/renderer/compositor_bindings/
web_filter_animation_curve_impl.h
13
class
AnimationCurve
;
39
scoped_ptr<cc::
AnimationCurve
> CloneToAnimationCurve() const;
web_float_animation_curve_impl.h
13
class
AnimationCurve
;
41
scoped_ptr<cc::
AnimationCurve
> CloneToAnimationCurve() const;
web_transform_animation_curve_impl.h
13
class
AnimationCurve
;
40
scoped_ptr<cc::
AnimationCurve
> CloneToAnimationCurve() const;
web_filter_animation_curve_impl.cc
51
scoped_ptr<cc::
AnimationCurve
>
web_float_animation_curve_impl.cc
52
scoped_ptr<cc::
AnimationCurve
>
web_transform_animation_curve_impl.cc
55
scoped_ptr<cc::
AnimationCurve
>
web_animation_impl.cc
34
scoped_ptr<cc::
AnimationCurve
> curve;
/external/chromium_org/ui/compositor/
float_animation_curve_adapter.cc
24
scoped_ptr<cc::
AnimationCurve
> FloatAnimationCurveAdapter::Clone() const {
30
return to_return.PassAs<cc::
AnimationCurve
>();
float_animation_curve_adapter.h
25
virtual scoped_ptr<cc::
AnimationCurve
> Clone() const OVERRIDE;
transform_animation_curve_adapter.cc
29
scoped_ptr<cc::
AnimationCurve
> TransformAnimationCurveAdapter::Clone() const {
35
return to_return.PassAs<cc::
AnimationCurve
>();
81
scoped_ptr<cc::
AnimationCurve
> InverseTransformCurveAdapter::Clone() const {
86
return to_return.PassAs<cc::
AnimationCurve
>();
transform_animation_curve_adapter.h
29
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
55
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
/external/chromium_org/cc/test/
animation_test_common.cc
15
using cc::
AnimationCurve
;
45
curve.PassAs<
AnimationCurve
>(),
78
curve.PassAs<
AnimationCurve
>(),
112
curve.PassAs<
AnimationCurve
>(),
138
scoped_ptr<
AnimationCurve
> FakeFloatAnimationCurve::Clone() const {
139
return make_scoped_ptr(new FakeFloatAnimationCurve).PassAs<
AnimationCurve
>();
160
scoped_ptr<
AnimationCurve
> FakeTransformTransition::Clone() const {
162
.PassAs<
AnimationCurve
>();
224
scoped_ptr<
AnimationCurve
> FakeFloatTransition::Clone() const {
226
.PassAs<
AnimationCurve
>();
[
all
...]
animation_test_common.h
31
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
47
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
61
virtual scoped_ptr<
AnimationCurve
> Clone() const OVERRIDE;
Completed in 180 milliseconds
1
2