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

  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableRepeatable.cpp 55 bool AnimatableRepeatable::interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues)
58 ASSERT(interpolatedValues.isEmpty());
68 interpolatedValues.append(interpolate(from, to, fraction));
75 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > interpolatedValues;
76 bool success = interpolateLists(m_values, toAnimatableRepeatable(value)->m_values, fraction, interpolatedValues);
78 return create(interpolatedValues);
AnimatableStrokeDasharrayList.cpp 89 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > interpolatedValues;
90 bool success = interpolateLists(from, to, fraction, interpolatedValues);
92 return adoptRefWillBeNoop(new AnimatableStrokeDasharrayList(interpolatedValues));
AnimatableRepeatable.h 65 static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues);

Completed in 56 milliseconds