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

  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableImage.cpp 56 CSSValue* toValue = toAnimatableImage(value)->toCSSValue();
58 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue);
  /external/proguard/src/proguard/gui/splash/
LinearDouble.java 31 private final double toValue;
38 * @param toValue the value that corresponds to a timing of 1.
41 public LinearDouble(double fromValue, double toValue, Timing timing)
44 this.toValue = toValue;
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
LinearInt.java 31 private final int toValue;
38 * @param toValue the value that corresponds to a timing of 1.
41 public LinearInt(int fromValue, int toValue, Timing timing)
44 this.toValue = toValue;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
LinearColor.java 33 private final Color toValue;
43 * @param toValue the value that corresponds to a timing of 1.
46 public LinearColor(Color fromValue, Color toValue, Timing timing)
49 this.toValue = toValue;
64 t == 1.0 ? toValue :
65 new Color((int)(fromValue.getRed() + t * (toValue.getRed() - fromValue.getRed())),
66 (int)(fromValue.getGreen() + t * (toValue.getGreen() - fromValue.getGreen())),
67 (int)(fromValue.getBlue() + t * (toValue.getBlue() - fromValue.getBlue())));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedTypeAnimator.cpp 235 RefPtr<SVGPropertyBase> toValue = to;
242 m_animationElement->adjustForInheritance<RefPtr<SVGPropertyBase>, ParsePropertyFromString>(parsePropertyFromString, m_animationElement->toPropertyValueType(), toValue, m_contextElement);
244 animatedValue->calculateAnimatedValue(m_animationElement, percentage, repeatCount, fromValue, toValue, toAtEndOfDurationValue, m_contextElement);
252 RefPtr<SVGPropertyBase> toValue = createPropertyForAnimation(toString);
253 return fromValue->calculateDistance(toValue, m_contextElement);
SVGLength.cpp 414 float toValue = valueInSpecifiedUnits();
416 length->newValueSpecifiedUnits(fromType, blink::blend(fromValue, toValue, progress));
418 length->newValueSpecifiedUnits(toType, blink::blend(fromValue, toValue, progress));
435 float toValue = valueInSpecifiedUnits();
436 length->newValueSpecifiedUnits(toType, blink::blend(fromValue, toValue, progress));
447 void SVGLength::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
450 RefPtr<SVGLength> toLength = toSVGLength(toValue);
462 float SVGLength::calculateDistance(PassRefPtr<SVGPropertyBase> toValue, SVGElement* contextElement)
465 RefPtr<SVGLength> toLength = toSVGLength(toValue);
SVGPathBlender.cpp 57 float toValue = blendMode == BlendHorizontal ? m_toCurrentPoint.x() : m_toCurrentPoint.y();
60 float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
66 float currentValue = blend(fromValue, toValue, m_progress);
SVGAnimationElement.cpp 273 else if (!toValue().isEmpty())
312 String SVGAnimationElement::toValue() const
566 String to = toValue();
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 48 public InterruptibleInOutAnimator(View view, long duration, float fromValue, float toValue) {
49 mAnimator = LauncherAnimUtils.ofFloat(view, fromValue, toValue).setDuration(duration);
52 mOriginalToValue = toValue;
64 final float toValue = (direction == IN) ? mOriginalToValue : mOriginalFromValue;
71 // TODO: We don't really need to do the animation if startValue == toValue, but
79 mAnimator.setFloatValues(startValue, toValue);
  /packages/apps/Launcher3/src/com/android/launcher3/
InterruptibleInOutAnimator.java 48 public InterruptibleInOutAnimator(View view, long duration, float fromValue, float toValue) {
49 mAnimator = LauncherAnimUtils.ofFloat(view, fromValue, toValue).setDuration(duration);
52 mOriginalToValue = toValue;
64 final float toValue = (direction == IN) ? mOriginalToValue : mOriginalFromValue;
71 // TODO: We don't really need to do the animation if startValue == toValue, but
79 mAnimator.setFloatValues(startValue, toValue);
  /external/proguard/lib/
proguardgui.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 

Completed in 496 milliseconds