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

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableColor.h39 class AnimatableColorImpl { class in namespace:blink
41 AnimatableColorImpl(float red, float green, float blue, float alpha);
42 AnimatableColorImpl(Color);
44 AnimatableColorImpl interpolateTo(const AnimatableColorImpl&, double fraction) const;
45 bool operator==(const AnimatableColorImpl&) const;
46 double distanceTo(const AnimatableColorImpl&) const;
61 static PassRefPtrWillBeRawPtr<AnimatableColor> create(const AnimatableColorImpl&, const AnimatableColorImpl& visitedLinkColor);
71 AnimatableColor(const AnimatableColorImpl
[all...]
H A DAnimatableColor.cpp48 AnimatableColorImpl::AnimatableColorImpl(float red, float green, float blue, float alpha) function in class:blink::AnimatableColorImpl
56 AnimatableColorImpl::AnimatableColorImpl(Color color) function in class:blink::AnimatableColorImpl
64 Color AnimatableColorImpl::toColor() const
71 AnimatableColorImpl AnimatableColorImpl::interpolateTo(const AnimatableColorImpl& to, double fraction) const
73 return AnimatableColorImpl(blend(m_red, to.m_red, fraction),
79 bool AnimatableColorImpl
[all...]

Completed in 966 milliseconds