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

  /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())));
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 47 public InterruptibleInOutAnimator(long duration, float fromValue, float toValue) {
48 mAnimator = ValueAnimator.ofFloat(fromValue, toValue).setDuration(duration);
51 mOriginalToValue = toValue;
63 final float toValue = (direction == IN) ? mOriginalToValue : mOriginalFromValue;
70 // TODO: We don't really need to do the animation if startValue == toValue, but
78 mAnimator.setFloatValues(startValue, toValue);
  /external/webkit/Source/WebCore/platform/graphics/android/
AndroidAnimation.cpp 252 FloatAnimationValue* toValue = (FloatAnimationValue*) m_operations->at(to);
254 XLOG("[layer %d] opacity fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f",
257 toValue, toValue->keyTime(), progress);
263 progress = applyTimingFunction(fromValue->keyTime(), toValue->keyTime(),
267 float value = fromValue->value() + ((toValue->value() - fromValue->value()) * progress);
294 TransformAnimationValue* toValue = (TransformAnimationValue*) m_operations->at(to);
296 XLOG("[layer %d] fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f",
299 toValue, toValue->keyTime(), progress)
    [all...]
  /external/webkit/Source/WebCore/platform/
Length.h 197 float toValue = isZero() ? 0 : value();
198 return Length(fromValue + (toValue - fromValue) * progress, resultType);
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 67 * @param toValue the target value
71 String property, float toValue, boolean replace) {
75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue);
  /external/webkit/Source/WebCore/svg/
SVGAnimationElement.h 72 String toValue() const;
SVGPathBlender.cpp 54 float toValue = blendMode == BlendHorizontal ? m_toCurrentPoint.x() : m_toCurrentPoint.y();
57 float animValue = blendAnimatedFloat(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
63 float currentValue = blendAnimatedFloat(fromValue, toValue, m_progress);
SVGAnimationElement.cpp 227 if (!toValue().isEmpty())
264 String SVGAnimationElement::toValue() const
508 String to = toValue();
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 657 * @param toValue The value to which the property will animate
659 private void animateProperty(int constantName, float toValue) {
661 float deltaValue = toValue - fromValue;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]
  /external/proguard/lib/
proguardgui.jar 
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCAAnimationMac.mm 456 [static_cast<CABasicAnimation*>(m_animation.get()) setToValue:[otherAnimation toValue]];

Completed in 271 milliseconds