HomeSort by relevance Sort by last modified time
    Searched refs:fromValue (Results 1 - 25 of 43) sorted by null

1 2

  /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/chromium_org/third_party/WebKit/Source/core/css/
CSSCrossfadeValue.h 45 static PassRefPtrWillBeRawPtr<CSSCrossfadeValue> create(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue)
47 return adoptRefWillBeNoop(new CSSCrossfadeValue(fromValue, toValue));
72 CSSCrossfadeValue(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue)
74 , m_fromValue(fromValue)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
AspectRatio.java 40 public static AspectRatio fromValue(int value) {
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableImage.cpp 55 CSSValue* fromValue = toCSSValue();
58 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, 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);
51 mOriginalFromValue = fromValue;
  /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);
51 mOriginalFromValue = fromValue;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGNumberList.h 59 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
SVGPointList.h 59 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
SVGAnimatedTypeAnimator.cpp 234 RefPtr<SVGPropertyBase> fromValue = m_animationElement->animationMode() == ToAnimation ? animated : from;
241 m_animationElement->adjustForInheritance<RefPtr<SVGPropertyBase>, ParsePropertyFromString>(parsePropertyFromString, m_animationElement->fromPropertyValueType(), fromValue, m_contextElement);
244 animatedValue->calculateAnimatedValue(m_animationElement, percentage, repeatCount, fromValue, toValue, toAtEndOfDurationValue, m_contextElement);
251 RefPtr<SVGPropertyBase> fromValue = createPropertyForAnimation(fromString);
253 return fromValue->calculateDistance(toValue, m_contextElement);
SVGAnimatedColor.cpp 61 void SVGColorProperty::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
63 StyleColor fromStyleColor = toSVGColorProperty(fromValue)->m_styleColor;
SVGLengthList.h 61 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
SVGStringList.h 81 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
SVGTransformList.h 67 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
SVGLength.cpp 413 float fromValue = from->valueInSpecifiedUnits();
416 length->newValueSpecifiedUnits(fromType, blink::blend(fromValue, toValue, progress));
418 length->newValueSpecifiedUnits(toType, blink::blend(fromValue, toValue, progress));
431 float fromValue = nonRelativeLengthContext.convertValueFromUserUnits(fromValueInUserUnits, unitMode(), toType, es);
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)
449 RefPtr<SVGLength> fromLength = toSVGLength(fromValue);
SVGNumberList.cpp 116 void SVGNumberList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
118 RefPtr<SVGNumberList> fromList = toSVGNumberList(fromValue);
SVGPointList.cpp 132 void SVGPointList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
134 RefPtr<SVGPointList> fromList = toSVGPointList(fromValue);
SVGRect.cpp 128 void SVGRect::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
131 RefPtr<SVGRect> fromRect = animationElement->animationMode() == ToAnimation ? this : toSVGRect(fromValue);
SVGPoint.cpp 125 void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
SVGLengthList.cpp 137 void SVGLengthList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
139 RefPtr<SVGLengthList> fromList = toSVGLengthList(fromValue);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 52 public static Mirror fromValue(char value) {
199 Mirror r = Mirror.fromValue((char) reader.nextInt());
FilterRotateRepresentation.java 48 public static Rotation fromValue(int value) {
179 Rotation r = Rotation.fromValue(reader.nextInt());
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 240 NameValuesHolder(int nameConstant, float fromValue, float deltaValue) {
242 mFromValue = fromValue;
    [all...]
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
JniInterface.java 70 public static State fromValue(int value) {
106 public static Error fromValue(int value) {
228 ConnectionListener.State state = ConnectionListener.State.fromValue(stateCode);
229 ConnectionListener.Error error = ConnectionListener.Error.fromValue(errorCode);

Completed in 704 milliseconds

1 2