HomeSort by relevance Sort by last modified time
    Searched defs:toValue (Results 1 - 13 of 13) 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 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/webkit/Source/WebCore/platform/
Length.h 197 float toValue = isZero() ? 0 : value();
198 return Length(fromValue + (toValue - fromValue) * progress, resultType);
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 235 FloatAnimationValue* toValue = (FloatAnimationValue*) m_operations->at(to);
237 ALOGV("[layer %d] opacity fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f",
240 toValue, toValue->keyTime(), progress);
246 progress = applyTimingFunction(fromValue->keyTime(), toValue->keyTime(),
250 float value = fromValue->value() + ((toValue->value() - fromValue->value()) * progress);
277 TransformAnimationValue* toValue = (TransformAnimationValue*) m_operations->at(to);
279 ALOGV("[layer %d] fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f",
282 toValue, toValue->keyTime(), progress)
    [all...]
  /external/webkit/Source/WebCore/svg/
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();
  /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 
  /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 796 milliseconds