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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableColor.cpp 48 AnimatableColorImpl::AnimatableColorImpl(float red, float green, float blue, float alpha)
56 AnimatableColorImpl::AnimatableColorImpl(Color color)
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::operator==(const AnimatableColorImpl& other) cons
    [all...]
AnimatableColor.h 39 class AnimatableColorImpl {
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& color, const AnimatableColorImpl& visitedLinkColor
    [all...]

Completed in 371 milliseconds