Searched refs:fromValue (Results 1 - 25 of 33) sorted by relevance

12

/external/proguard/src/proguard/gui/splash/
H A DLinearDouble.java30 private final double fromValue; field in class:LinearDouble
37 * @param fromValue the value that corresponds to a timing of 0.
41 public LinearDouble(double fromValue, double toValue, Timing timing) argument
43 this.fromValue = fromValue;
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
H A DLinearInt.java30 private final int fromValue; field in class:LinearInt
37 * @param fromValue the value that corresponds to a timing of 0.
41 public LinearInt(int fromValue, int toValue, Timing timing) argument
43 this.fromValue = fromValue;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
H A DLinearColor.java32 private final Color fromValue; field in class:LinearColor
42 * @param fromValue the value that corresponds to a timing of 0.
46 public LinearColor(Color fromValue, Color toValue, Timing timing) argument
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
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DAspectRatio.java40 public static AspectRatio fromValue(int value) { method in class:AspectRatio
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableImage.cpp55 CSSValue* fromValue = toCSSValue();
58 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCrossfadeValue.h46 static PassRefPtrWillBeRawPtr<CSSCrossfadeValue> create(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue) argument
48 return adoptRefWillBeNoop(new CSSCrossfadeValue(fromValue, toValue));
73 CSSCrossfadeValue(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue) argument
75 , m_fromValue(fromValue)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatedTypeAnimator.cpp234 RefPtr<SVGPropertyBase> fromValue = m_animationElement->animationMode() == ToAnimation ? animated : from; local
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); local
253 return fromValue->calculateDistance(toValue, m_contextElement);
H A DSVGAnimatedColor.cpp61 void SVGColorProperty::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
63 StyleColor fromStyleColor = toSVGColorProperty(fromValue)->m_styleColor;
H A DSVGLengthList.h62 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGNumberList.h62 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGPointList.h62 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGStringList.h83 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGTransformList.h69 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGLength.cpp419 float fromValue = from->valueInSpecifiedUnits(); local
422 length->newValueSpecifiedUnits(fromType, WebCore::blend(fromValue, toValue, progress));
424 length->newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress));
437 float fromValue = nonRelativeLengthContext.convertValueFromUserUnits(fromValueInUserUnits, unitMode(), toType, es); local
442 length->newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress));
453 void SVGLength::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
455 RefPtr<SVGLength> fromLength = toSVGLength(fromValue);
H A DSVGRect.cpp138 void SVGRect::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
141 RefPtr<SVGRect> fromRect = animationElement->animationMode() == ToAnimation ? this : toSVGRect(fromValue);
H A DSVGPoint.cpp134 void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
H A DSVGLengthList.cpp165 void SVGLengthList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
167 RefPtr<SVGLengthList> fromList = toSVGLengthList(fromValue);
H A DSVGNumberList.cpp163 void SVGNumberList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
165 RefPtr<SVGNumberList> fromList = toSVGNumberList(fromValue);
H A DSVGPathSegList.cpp173 void SVGPathSegList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
180 const RefPtr<SVGPathSegList> from = toSVGPathSegList(fromValue);
H A DSVGPointList.cpp179 void SVGPointList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
181 RefPtr<SVGPointList> fromList = toSVGPointList(fromValue);
H A DSVGAnimationElement.cpp284 setAnimationMode(fromValue().isEmpty() ? ToAnimation : FromToAnimation);
286 setAnimationMode(fromValue().isEmpty() ? ByAnimation : FromByAnimation);
332 String SVGAnimationElement::fromValue() const function in class:WebCore::SVGAnimationElement
572 String from = fromValue();
H A DSVGAnimationElement.h152 String fromValue() const;
H A DSVGPathSegList.h139 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGPreserveAspectRatio.cpp405 void SVGPreserveAspectRatio::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
412 RefPtr<SVGPreserveAspectRatio> preserveAspectRatioToUse = useToValue ? toSVGPreserveAspectRatio(toValue) : toSVGPreserveAspectRatio(fromValue);
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
H A DJniInterface.java68 public static State fromValue(int value) { method in class:JniInterface.ConnectionListener.State
104 public static Error fromValue(int value) { method in class:JniInterface.ConnectionListener.Error
210 sConnectionListener.onConnectionState(ConnectionListener.State.fromValue(state),
211 ConnectionListener.Error.fromValue(error));

Completed in 470 milliseconds

12