/external/proguard/src/proguard/gui/splash/ |
D | LinearColor.java | 32 private final Color fromValue; field in LinearColor 46 public LinearColor(Color fromValue, Color toValue, Timing timing) in LinearColor() argument 48 this.fromValue = fromValue; in LinearColor() 63 t == 0.0 ? fromValue : in getColor() 65 … new Color((int)(fromValue.getRed() + t * (toValue.getRed() - fromValue.getRed())), in getColor() 66 … (int)(fromValue.getGreen() + t * (toValue.getGreen() - fromValue.getGreen())), in getColor() 67 … (int)(fromValue.getBlue() + t * (toValue.getBlue() - fromValue.getBlue()))); in getColor()
|
D | LinearInt.java | 30 private final int fromValue; field in LinearInt 41 public LinearInt(int fromValue, int toValue, Timing timing) in LinearInt() argument 43 this.fromValue = fromValue; in LinearInt() 53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue)); in getInt()
|
D | LinearDouble.java | 30 private final double fromValue; field in LinearDouble 41 public LinearDouble(double fromValue, double toValue, Timing timing) in LinearDouble() argument 43 this.fromValue = fromValue; in LinearDouble() 53 return fromValue + timing.getTiming(time) * (toValue - fromValue); in getDouble()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSCrossfadeValue.h | 45 …WillBeRawPtr<CSSCrossfadeValue> create(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillB… in create() argument 47 return adoptRefWillBeNoop(new CSSCrossfadeValue(fromValue, toValue)); in create() 72 …CSSCrossfadeValue(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toV… in CSSCrossfadeValue() argument 74 , m_fromValue(fromValue) in CSSCrossfadeValue()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGAnimatedTypeAnimator.cpp | 234 …RefPtr<SVGPropertyBase> fromValue = m_animationElement->animationMode() == ToAnimation ? animated … in calculateAnimatedValue() local 241 …>(parsePropertyFromString, m_animationElement->fromPropertyValueType(), fromValue, m_contextElemen… in calculateAnimatedValue() 244 …animatedValue->calculateAnimatedValue(m_animationElement, percentage, repeatCount, fromValue, toVa… in calculateAnimatedValue() 251 RefPtr<SVGPropertyBase> fromValue = createPropertyForAnimation(fromString); in calculateDistance() local 253 return fromValue->calculateDistance(toValue, m_contextElement); in calculateDistance()
|
D | SVGLength.cpp | 413 float fromValue = from->valueInSpecifiedUnits(); in blend() local 416 length->newValueSpecifiedUnits(fromType, blink::blend(fromValue, toValue, progress)); in blend() 418 length->newValueSpecifiedUnits(toType, blink::blend(fromValue, toValue, progress)); in blend() 431 …float fromValue = nonRelativeLengthContext.convertValueFromUserUnits(fromValueInUserUnits, unitMod… in blend() local 436 length->newValueSpecifiedUnits(toType, blink::blend(fromValue, toValue, progress)); in blend() 447 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 449 RefPtr<SVGLength> fromLength = toSVGLength(fromValue); in calculateAnimatedValue()
|
D | SVGAnimatedColor.cpp | 61 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 63 StyleColor fromStyleColor = toSVGColorProperty(fromValue)->m_styleColor; in calculateAnimatedValue()
|
D | SVGNumberList.cpp | 116 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 118 RefPtr<SVGNumberList> fromList = toSVGNumberList(fromValue); in calculateAnimatedValue()
|
D | SVGRect.cpp | 128 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 131 …SVGRect> fromRect = animationElement->animationMode() == ToAnimation ? this : toSVGRect(fromValue); in calculateAnimatedValue()
|
D | SVGPointList.cpp | 132 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 134 RefPtr<SVGPointList> fromList = toSVGPointList(fromValue); in calculateAnimatedValue()
|
D | SVGPathSegList.cpp | 170 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 177 const RefPtr<SVGPathSegList> from = toSVGPathSegList(fromValue); in calculateAnimatedValue()
|
D | SVGLengthList.cpp | 137 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 139 RefPtr<SVGLengthList> fromList = toSVGLengthList(fromValue); in calculateAnimatedValue()
|
D | SVGPointList.h | 59 …t*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP…
|
D | SVGNumberList.h | 59 …t*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP…
|
D | SVGLengthList.h | 61 …t*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP…
|
D | SVGTransformList.h | 67 …t*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP…
|
D | SVGStringList.h | 81 …t*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP…
|
D | SVGAnimationElement.cpp | 274 setAnimationMode(fromValue().isEmpty() ? ToAnimation : FromToAnimation); in updateAnimationMode() 276 setAnimationMode(fromValue().isEmpty() ? ByAnimation : FromByAnimation); in updateAnimationMode() 322 String SVGAnimationElement::fromValue() const in fromValue() function in blink::SVGAnimationElement 565 String from = fromValue(); in startedActiveInterval()
|
D | SVGTransformList.cpp | 296 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 305 RefPtr<SVGTransformList> fromList = isToAnimation ? this : toSVGTransformList(fromValue); in calculateAnimatedValue()
|
D | SVGPoint.cpp | 125 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument
|
D | SVGPreserveAspectRatio.cpp | 400 …nt, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGP… in calculateAnimatedValue() argument 407 …tRatioToUse = useToValue ? toSVGPreserveAspectRatio(toValue) : toSVGPreserveAspectRatio(fromValue); in calculateAnimatedValue()
|
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
D | AnimatableImage.cpp | 55 CSSValue* fromValue = toCSSValue(); in interpolateTo() local 58 …RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValu… in interpolateTo()
|
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/ |
D | JniInterface.java | 70 public static State fromValue(int value) { in fromValue() method in JniInterface.ConnectionListener.State 106 public static Error fromValue(int value) { in fromValue() method in JniInterface.ConnectionListener.Error 228 ConnectionListener.State state = ConnectionListener.State.fromValue(stateCode); in onConnectionState() 229 ConnectionListener.Error error = ConnectionListener.Error.fromValue(errorCode); in onConnectionState()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/ |
D | AspectRatio.java | 40 public static AspectRatio fromValue(int value) { in fromValue() method in AspectRatio
|
/external/chromium_org/ui/app_list/cocoa/ |
D | item_drag_controller.mm | 21 - (void)animateTransformFrom:(CATransform3D)fromValue 145 - (void)animateTransformFrom:(CATransform3D)fromValue 149 [animation setFromValue:[NSValue valueWithCATransform3D:fromValue]];
|