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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.h 79 class PropertySpecificKeyframe;
81 typedef Vector<OwnPtr<KeyframeAnimationEffect::PropertySpecificKeyframe> > PropertySpecificKeyframeVector;
104 class PropertySpecificKeyframe {
106 PropertySpecificKeyframe(double offset, const AnimatableValue*, CompositeOperation);
109 PassOwnPtr<PropertySpecificKeyframe> cloneWithOffset(double offset) const;
112 PropertySpecificKeyframe(double offset, PassRefPtr<CompositableValue>);
119 void appendKeyframe(PassOwnPtr<PropertySpecificKeyframe>);
KeyframeAnimationEffect.cpp 240 new PropertySpecificKeyframe(keyframe->offset(), keyframe->propertyValue(property), keyframe->composite())));
252 KeyframeAnimationEffect::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, const AnimatableValue* value, CompositeOperation composite)
260 KeyframeAnimationEffect::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, PassRefPtr<CompositableValue> value)
267 PassOwnPtr<KeyframeAnimationEffect::PropertySpecificKeyframe> KeyframeAnimationEffect::PropertySpecificKeyframe::cloneWithOffset(double offset) const
269 return adoptPtr(new PropertySpecificKeyframe(offset, PassRefPtr<CompositableValue>(m_value)));
273 void KeyframeAnimationEffect::PropertySpecificKeyframeGroup::appendKeyframe(PassOwnPtr<PropertySpecificKeyframe> keyframe)
315 m_keyframes.insert(0, adoptPtr(new PropertySpecificKeyframe(0.0, AnimatableValue::neutralValue(), CompositeAdd)))
    [all...]

Completed in 1322 milliseconds