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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValueTestHelper.cpp 44 void PrintTo(const AnimatableClipPathOperation& animValue, ::std::ostream* os)
46 *os << "AnimatableClipPathOperation@" << &animValue;
102 void PrintTo(const AnimatableNeutral& animValue, ::std::ostream* os)
104 *os << "AnimatableNeutral@" << &animValue;
107 void PrintTo(const AnimatableRepeatable& animValue, ::std::ostream* os)
111 const Vector<RefPtr<AnimatableValue> > v = animValue.values();
138 void PrintTo(const AnimatableShapeValue& animValue, ::std::ostream* os)
140 *os << "AnimatableShapeValue@" << &animValue;
143 void PrintTo(const AnimatableStrokeDasharrayList& animValue, ::std::ostream* os)
146 const Vector<SVGLength> v = animValue.toSVGLengthVector()
    [all...]
AnimatableValueTestHelperTest.cpp 53 ::std::string PrintToString(PassRefPtr<AnimatableValue> animValue)
55 return PrintToString(animValue.get());
58 ::std::string PrintToString(const AnimatableValue* animValue)
60 return ::testing::PrintToString(*animValue);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBlender.cpp 60 float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
63 return animValue;
67 return m_toMode == AbsoluteCoordinates ? animValue + currentValue : animValue - currentValue;

Completed in 172 milliseconds