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

  /external/proguard/src/proguard/gui/splash/
LinearDouble.java 30 private final double fromValue;
37 * @param fromValue the value that corresponds to a timing of 0.
41 public LinearDouble(double fromValue, double toValue, Timing timing)
43 this.fromValue = fromValue;
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
LinearInt.java 30 private final int fromValue;
37 * @param fromValue the value that corresponds to a timing of 0.
41 public LinearInt(int fromValue, int toValue, Timing timing)
43 this.fromValue = fromValue;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
LinearColor.java 32 private final Color fromValue;
42 * @param fromValue the value that corresponds to a timing of 0.
46 public LinearColor(Color fromValue, Color toValue, Timing timing)
48 this.fromValue = fromValue;
63 t == 0.0 ? fromValue :
65 new Color((int)(fromValue.getRed() + t * (toValue.getRed() - fromValue.getRed())),
66 (int)(fromValue.getGreen() + t * (toValue.getGreen() - fromValue.getGreen()))
    [all...]
  /external/webkit/Source/WebCore/platform/
Length.h 196 float fromValue = from.isZero() ? 0 : from.value();
198 return Length(fromValue + (toValue - fromValue) * progress, resultType);
  /external/webkit/Source/WebCore/platform/graphics/android/
AndroidAnimation.cpp 251 FloatAnimationValue* fromValue = (FloatAnimationValue*) m_operations->at(from);
254 XLOG("[layer %d] opacity fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f",
256 fromValue, fromValue->keyTime(),
262 const TimingFunction* timingFunction = fromValue->timingFunction();
263 progress = applyTimingFunction(fromValue->keyTime(), toValue->keyTime(),
267 float value = fromValue->value() + ((toValue->value() - fromValue->value()) * progress);
293 TransformAnimationValue* fromValue = (TransformAnimationValue*) m_operations->at(from);
296 XLOG("[layer %d] fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f"
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathBlender.cpp 53 float fromValue = blendMode == BlendHorizontal ? m_fromCurrentPoint.x() : m_fromCurrentPoint.y();
63 float currentValue = blendAnimatedFloat(fromValue, toValue, m_progress);
SVGAnimationElement.cpp 228 return fromValue().isEmpty() ? ToAnimation : FromToAnimation;
230 return fromValue().isEmpty() ? ByAnimation : FromByAnimation;
274 String SVGAnimationElement::fromValue() const
507 String from = fromValue();
  /external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp     [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 213 NameValuesHolder(int nameConstant, float fromValue, float deltaValue) {
215 mFromValue = fromValue;
660 float fromValue = getValue(constantName);
661 float deltaValue = toValue - fromValue;
662 animatePropertyBy(constantName, fromValue, deltaValue);
674 float fromValue = getValue(constantName);
675 animatePropertyBy(constantName, fromValue, byValue);
    [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 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 1123 milliseconds