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

  /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/page/animation/
CSSPropertyAnimation.cpp 74 Color toColor = animation->renderer()->resolveColor(to);
75 return blend(fromColor, toColor, progress);
113 Color toColor = anim->renderer()->resolveColor(to->color());
119 blend(fromColor, toColor, progress));
668 StyleColor toColor = (b->*m_getter)();
670 if (!fromColor.isValid() && !toColor.isValid())
675 if (!toColor.isValid())
676 toColor = b->color();
678 return fromColor == toColor;
684 StyleColor toColor = (b->*m_getter)()
    [all...]

Completed in 725 milliseconds