Searched defs:interpolatedValues (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableRepeatable.cpp55 bool AnimatableRepeatable::interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues) argument
58 ASSERT(interpolatedValues.isEmpty());
68 interpolatedValues.append(interpolate(from, to, fraction));
75 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > interpolatedValues; local
76 bool success = interpolateLists(m_values, toAnimatableRepeatable(value)->m_values, fraction, interpolatedValues);
78 return create(interpolatedValues);
H A DAnimatableStrokeDasharrayList.cpp89 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > interpolatedValues; local
90 bool success = interpolateLists(from, to, fraction, interpolatedValues);
92 return adoptRefWillBeNoop(new AnimatableStrokeDasharrayList(interpolatedValues));

Completed in 93 milliseconds