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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableColor.cpp 55 Color AnimatableColorImpl::toColor() const
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedColor.cpp 71 Color toColor = to->color();
77 m_animationElement->adjustForInheritance<Color>(parseColorFromString, m_animationElement->toPropertyValueType(), toColor, m_contextElement);
83 adjustForCurrentColor(m_contextElement, toColor);
86 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.red(), toColor.red(), toAtEndOfDurationColor.red(), animatedRed);
89 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.green(), toColor.green(), toAtEndOfDurationColor.green(), animatedGreen);
92 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.blue(), toColor.blue(), toAtEndOfDurationColor.blue(), animatedBlue);
95 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.alpha(), toColor.alpha(), toAtEndOfDurationColor.alpha(), animatedAlpha);
  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
CSSPropertyAnimation.cpp 532 Color toColor = (b->*m_getter)();
534 if (!fromColor.isValid() && !toColor.isValid())
539 if (!toColor.isValid())
540 toColor = b->color();
542 return fromColor == toColor;
548 Color toColor = (b->*m_getter)();
550 if (!fromColor.isValid() && !toColor.isValid())
555 if (!toColor.isValid())
556 toColor = b->color();
557 (dst->*m_setter)(blendFunc(anim, fromColor, toColor, progress))
    [all...]

Completed in 3167 milliseconds