OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:interpolatedvalues
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableRepeatable.cpp
51
bool AnimatableRepeatable::interpolateLists(const Vector<RefPtr<AnimatableValue> >& fromValues, const Vector<RefPtr<AnimatableValue> >& toValues, double fraction, Vector<RefPtr<AnimatableValue> >&
interpolatedValues
)
54
ASSERT(
interpolatedValues
.isEmpty());
63
interpolatedValues
.append(interpolate(from, to, fraction));
70
Vector<RefPtr<AnimatableValue> >
interpolatedValues
;
71
bool success = interpolateLists(m_values, toAnimatableRepeatable(value)->m_values, fraction,
interpolatedValues
);
72
return success ? create(
interpolatedValues
) : defaultInterpolateTo(this, value, fraction);
AnimatableStrokeDasharrayList.cpp
85
Vector<RefPtr<AnimatableValue> >
interpolatedValues
;
86
bool success = interpolateLists(from, to, fraction,
interpolatedValues
);
88
return adoptRef(new AnimatableStrokeDasharrayList(
interpolatedValues
));
AnimatableRepeatable.h
63
static bool interpolateLists(const Vector<RefPtr<AnimatableValue> >& fromValues, const Vector<RefPtr<AnimatableValue> >& toValues, double fraction, Vector<RefPtr<AnimatableValue> >&
interpolatedValues
);
Completed in 50 milliseconds