HomeSort by relevance Sort by last modified time
    Searched defs:toValue (Results 1 - 7 of 7) 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())));
  /external/webkit/WebCore/platform/
Length.h 185 int toValue = isZero() ? 0 : value();
186 return Length(int(fromValue + (toValue - fromValue) * progress), resultType);
  /external/webkit/WebCore/svg/
SVGAnimationElement.cpp 195 if (!toValue().isEmpty())
232 String SVGAnimationElement::toValue() const
483 m_animationValid = calculateFromAndToValues(fromValue(), toValue());
487 m_animationValid = calculateFromAndToValues(String(), toValue());
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]
  /external/proguard/lib/
proguardgui.jar 

Completed in 200 milliseconds