Searched refs:fromValue (Results 1 - 25 of 34) 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/animatable/
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.h45 static PassRefPtrWillBeRawPtr<CSSCrossfadeValue> create(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue) argument
47 return adoptRefWillBeNoop(new CSSCrossfadeValue(fromValue, toValue));
72 CSSCrossfadeValue(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue) argument
74 , m_fromValue(fromValue)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGNumberList.h59 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGPointList.h59 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
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.h61 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGStringList.h81 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGTransformList.h67 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGLength.cpp413 float fromValue = from->valueInSpecifiedUnits(); local
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); local
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) argument
449 RefPtr<SVGLength> fromLength = toSVGLength(fromValue);
H A DSVGNumberList.cpp116 void SVGNumberList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
118 RefPtr<SVGNumberList> fromList = toSVGNumberList(fromValue);
H A DSVGPointList.cpp132 void SVGPointList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
134 RefPtr<SVGPointList> fromList = toSVGPointList(fromValue);
H A DSVGRect.cpp128 void SVGRect::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
131 RefPtr<SVGRect> fromRect = animationElement->animationMode() == ToAnimation ? this : toSVGRect(fromValue);
H A DSVGPoint.cpp125 void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
H A DSVGLengthList.cpp137 void SVGLengthList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
139 RefPtr<SVGLengthList> fromList = toSVGLengthList(fromValue);
H A DSVGPathSegList.cpp170 void SVGPathSegList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
177 const RefPtr<SVGPathSegList> from = toSVGPathSegList(fromValue);
H A DSVGAnimationElement.cpp274 setAnimationMode(fromValue().isEmpty() ? ToAnimation : FromToAnimation);
276 setAnimationMode(fromValue().isEmpty() ? ByAnimation : FromByAnimation);
322 String SVGAnimationElement::fromValue() const function in class:blink::SVGAnimationElement
565 String from = fromValue();
H A DSVGAnimationElement.h151 String fromValue() const;
H A DSVGPathSegList.h140 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGPreserveAspectRatio.cpp400 void SVGPreserveAspectRatio::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
407 RefPtr<SVGPreserveAspectRatio> preserveAspectRatioToUse = useToValue ? toSVGPreserveAspectRatio(toValue) : toSVGPreserveAspectRatio(fromValue);
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
H A DJniInterface.java70 public static State fromValue(int value) { method in class:JniInterface.ConnectionListener.State
106 public static Error fromValue(int value) { method in class:JniInterface.ConnectionListener.Error
228 ConnectionListener.State state = ConnectionListener.State.fromValue(stateCode);
229 ConnectionListener.Error error = ConnectionListener.Error.fromValue(errorCode);

Completed in 246 milliseconds

12