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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.h 38 class AnimatableValue;
43 static void applyProperty(CSSPropertyID, StyleResolverState&, const AnimatableValue*);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableLengthPoint FINAL : public AnimatableValue {
41 static PassRefPtrWillBeRawPtr<AnimatableLengthPoint> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y)
45 const AnimatableValue* x() const { return m_x.get(); }
46 const AnimatableValue* y() const { return m_y.get(); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
54 AnimatableLengthPoint(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y
    [all...]
AnimatableLengthBox.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableLengthBox FINAL : public AnimatableValue {
41 static PassRefPtrWillBeRawPtr<AnimatableLengthBox> create(PassRefPtrWillBeRawPtr<AnimatableValue> left, PassRefPtrWillBeRawPtr<AnimatableValue> right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> bottom)
45 const AnimatableValue* left() const { return m_left.get(); }
46 const AnimatableValue* right() const { return m_right.get(); }
47 const AnimatableValue* top() const { return m_top.get(); }
48 const AnimatableValue* bottom() const { return m_bottom.get();
    [all...]
AnimatableLengthSize.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableLengthSize FINAL : public AnimatableValue {
41 static PassRefPtrWillBeRawPtr<AnimatableLengthSize> create(PassRefPtrWillBeRawPtr<AnimatableValue> width, PassRefPtrWillBeRawPtr<AnimatableValue> height)
45 const AnimatableValue* width() const { return m_width.get(); }
46 const AnimatableValue* height() const { return m_height.get(); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
54 AnimatableLengthSize(PassRefPtrWillBeRawPtr<AnimatableValue> width, PassRefPtrWillBeRawPtr<AnimatableValue> height
    [all...]
AnimatableNeutral.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableNeutral FINAL : public AnimatableValue {
42 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
46 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const OVERRIDE
53 friend class AnimatableValue;
55 virtual bool equalTo(const AnimatableValue* value) const OVERRIDE
AnimatableValue.cpp 32 #include "core/animation/AnimatableValue.h"
45 const AnimatableValue* AnimatableValue::neutralValue()
51 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableValue::interpolate(const AnimatableValue* left, const AnimatableValue* right, double fraction)
64 double AnimatableValue::distance(const AnimatableValue* left, const AnimatableValue* right
    [all...]
AnimatableLengthPoint3D.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableLengthPoint3D FINAL : public AnimatableValue {
41 static PassRefPtrWillBeRawPtr<AnimatableLengthPoint3D> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z)
45 const AnimatableValue* x() const { return m_x.get(); }
46 const AnimatableValue* y() const { return m_y.get(); }
47 const AnimatableValue* z() const { return m_z.get(); }
52 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE
    [all...]
AnimatableLengthBoxAndBool.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableLengthBoxAndBool FINAL : public AnimatableValue {
41 static PassRefPtrWillBeRawPtr<AnimatableLengthBoxAndBool> create(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag)
45 const AnimatableValue* box() const { return m_box.get(); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
52 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
55 AnimatableLengthBoxAndBool(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag)
61 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
63 RefPtrWillBeMember<AnimatableValue> m_box
    [all...]
AnimatableClipPathOperation.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableClipPathOperation FINAL : public AnimatableValue {
48 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
52 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
61 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableFilterOperations.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableFilterOperations FINAL : public AnimatableValue {
48 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
52 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
59 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableLengthPoint.cpp 36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint::interpolateTo(const AnimatableValue* value, double fraction) const
40 AnimatableValue::interpolate(this->x(), lengthPoint->x(), fraction),
41 AnimatableValue::interpolate(this->y(), lengthPoint->y(), fraction));
44 bool AnimatableLengthPoint::equalTo(const AnimatableValue* value) const
54 AnimatableValue::trace(visitor);
AnimatableLengthSize.cpp 36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthSize::interpolateTo(const AnimatableValue* value, double fraction) const
40 AnimatableValue::interpolate(this->width(), lengthSize->width(), fraction),
41 AnimatableValue::interpolate(this->height(), lengthSize->height(), fraction));
44 bool AnimatableLengthSize::equalTo(const AnimatableValue* value) const
54 AnimatableValue::trace(visitor);
AnimatableShapeValue.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableShapeValue FINAL : public AnimatableValue {
48 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
52 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
61 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableVisibility.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableVisibility FINAL : public AnimatableValue {
49 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
52 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
53 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
61 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableRepeatable.h 34 #include "core/animation/AnimatableValue.h"
41 class AnimatableRepeatable : public AnimatableValue {
46 static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values)
51 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values() const { return m_values; }
59 AnimatableRepeatable(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values)
65 static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues);
67 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
69 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > m_values
    [all...]
AnimatableValue.h 40 class AnimatableValue : public RefCountedWillBeGarbageCollectedFinalized<AnimatableValue> {
42 virtual ~AnimatableValue() { }
44 static const AnimatableValue* neutralValue();
46 static PassRefPtrWillBeRawPtr<AnimatableValue> interpolate(const AnimatableValue*, const AnimatableValue*, double fraction);
47 static double distance(const AnimatableValue* from, const AnimatableValue* to);
48 static bool usesDefaultInterpolation(const AnimatableValue* from, const AnimatableValue* to
    [all...]
AnimatableLengthBox.cpp 36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthBox::interpolateTo(const AnimatableValue* value, double fraction) const
40 AnimatableValue::interpolate(this->left(), lengthBox->left(), fraction),
41 AnimatableValue::interpolate(this->right(), lengthBox->right(), fraction),
42 AnimatableValue::interpolate(this->top(), lengthBox->top(), fraction),
43 AnimatableValue::interpolate(this->bottom(), lengthBox->bottom(), fraction));
46 bool AnimatableLengthBox::equalTo(const AnimatableValue* value) const
61 AnimatableValue::trace(visitor);
AnimatableNeutralTest.cpp 45 EXPECT_TRUE(AnimatableValue::neutralValue());
AnimatableSVGLength.cpp 38 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableSVGLength::interpolateTo(const AnimatableValue* value, double fraction) const
43 bool AnimatableSVGLength::equalTo(const AnimatableValue* value) const
AnimatableSVGLength.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableSVGLength FINAL : public AnimatableValue {
53 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
56 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
65 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableShadow.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableShadow FINAL : public AnimatableValue {
48 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
59 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableTransform.h 34 #include "core/animation/AnimatableValue.h"
39 class AnimatableTransform FINAL : public AnimatableValue {
48 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
59 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
AnimatableDouble.h 34 #include "core/animation/AnimatableValue.h"
38 class AnimatableDouble FINAL : public AnimatableValue {
54 virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
57 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
58 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
67 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
68 virtual double distanceTo(const AnimatableValue*) const OVERRIDE;
AnimatableLengthBoxAndBool.cpp 36 bool AnimatableLengthBoxAndBool::usesDefaultInterpolationWith(const AnimatableValue* value) const
41 return AnimatableValue::usesDefaultInterpolation(lengthBox->box(), box());
44 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthBoxAndBool::interpolateTo(const AnimatableValue* value, double fraction) const
49 AnimatableValue::interpolate(box(), lengthBox->box(), fraction),
55 bool AnimatableLengthBoxAndBool::equalTo(const AnimatableValue* value) const
64 AnimatableValue::trace(visitor);
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.h 35 #include "core/animation/AnimatableValue.h"
44 static PassRefPtrWillBeRawPtr<AnimatableValue> create(CSSPropertyID, const RenderStyle&);
46 static PassRefPtrWillBeRawPtr<AnimatableValue> createFromColor(CSSPropertyID, const RenderStyle&);

Completed in 254 milliseconds

1 2 3 4