HomeSort by relevance Sort by last modified time
    Searched full:animatabledouble (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableDoubleTest.cpp 32 #include "core/animation/AnimatableDouble.h"
44 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5).get()));
45 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10).get()));
50 EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10).get()));
51 EXPECT_FALSE(AnimatableDouble::create(5)->equals(AnimatableDouble::create(10).get()));
58 EXPECT_TRUE(AnimatableDouble::create(5)->toCSSValue()->equals(*cssValue5.get()));
59 EXPECT_FALSE(AnimatableDouble::create(5)->toCSSValue()->equals(*cssValue10.get()));
64 EXPECT_EQ(5.9, AnimatableDouble::create(5.9)->toDouble())
    [all...]
AnimatableDouble.cpp 32 #include "core/animation/AnimatableDouble.h"
40 PassRefPtr<CSSValue> AnimatableDouble::toCSSValue() const
45 PassRefPtr<AnimatableValue> AnimatableDouble::interpolateTo(const AnimatableValue* value, double fraction) const
47 const AnimatableDouble* other = toAnimatableDouble(value);
51 return AnimatableDouble::create(blend(m_number, other->m_number, fraction));
54 PassRefPtr<AnimatableValue> AnimatableDouble::addWith(const AnimatableValue* value) const
59 const AnimatableDouble* other = toAnimatableDouble(value);
63 return AnimatableDouble::create(m_number + other->m_number);
66 bool AnimatableDouble::equalTo(const AnimatableValue* value) const
AnimatableDouble.h 39 class AnimatableDouble : public AnimatableValue {
41 virtual ~AnimatableDouble() { }
48 static PassRefPtr<AnimatableDouble> create(double number, Constraint constraint = Unconstrained)
50 return adoptRef(new AnimatableDouble(number, constraint));
61 AnimatableDouble(double number, Constraint constraint)
73 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableDouble, isDouble());
CompositorAnimationsTest.cpp 35 #include "core/animation/AnimatableDouble.h"
159 value = AnimatableDouble::create(10.0);
180 RefPtr<AnimatableDouble> value = AnimatableDouble::create(values[i]);
247 keyframeBadMultipleOp->setPropertyValue(CSSPropertyWebkitTransform, AnimatableDouble::create(10.0).get());
255 keyframeBadMultiple1ID->setPropertyValue(CSSPropertyOpacity, AnimatableDouble::create(10.0).get());
260 keyframeBadMultiple2ID->setPropertyValue(CSSPropertyWidth, AnimatableDouble::create(10.0).get());
    [all...]
AnimatableValueTestHelper.h 41 #include "core/animation/AnimatableDouble.h"
71 void PrintTo(const AnimatableDouble&, ::std::ostream*);
AnimatableValueTestHelperTest.cpp 76 ::std::string("AnimatableDouble(1)"),
77 PrintToString(AnimatableDouble::create(1.0)));
AnimatableValueTestHelper.cpp 56 void PrintTo(const AnimatableDouble& animDouble, ::std::ostream* os)
58 PrintTo(*(animDouble.toCSSValue().get()), os, "AnimatableDouble");
CompositorAnimations.cpp 34 #include "core/animation/AnimatableDouble.h"
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 37 #include "core/animation/AnimatableDouble.h"
106 return AnimatableDouble::create(value);
111 inline static PassRefPtr<AnimatableValue> createFromDouble(double value, AnimatableDouble::Constraint constraint = AnimatableDouble::Unconstrained)
113 return AnimatableDouble::create(value, constraint);
312 return createFromDouble(style.flexGrow(), AnimatableDouble::InterpolationIsNonContinuousWithZero);
314 return createFromDouble(style.flexShrink(), AnimatableDouble::InterpolationIsNonContinuousWithZero);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp 36 #include "core/animation/AnimatableDouble.h"
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 58 third_party/WebKit/Source/core/animation/AnimatableDouble.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 58 third_party/WebKit/Source/core/animation/AnimatableDouble.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 58 third_party/WebKit/Source/core/animation/AnimatableDouble.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 58 third_party/WebKit/Source/core/animation/AnimatableDouble.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 58 third_party/WebKit/Source/core/animation/AnimatableDouble.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 58 third_party/WebKit/Source/core/animation/AnimatableDouble.cpp \
    [all...]
core.gypi 541 'animation/AnimatableDouble.cpp',
542 'animation/AnimatableDouble.h',
    [all...]

Completed in 557 milliseconds