Searched defs:toValue (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableImage.cpp55 RefPtr<CSSValue> toValue = image->toCSSValue(); local
57 if (toValue->isImageGeneratorValue())
59 if (!toValue->isImageValue() && !toValue->isImageGeneratorValue()) {
63 toValue = CSSImageValue::create(resource->url(), image->m_image.get());
65 RefPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue);
/external/proguard/src/proguard/gui/splash/
H A DLinearDouble.java31 private final double toValue; field in class:LinearDouble
38 * @param toValue the value that corresponds to a timing of 1.
41 public LinearDouble(double fromValue, double toValue, Timing timing) argument
44 this.toValue = toValue;
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
H A DLinearInt.java31 private final int toValue; field in class:LinearInt
38 * @param toValue the value that corresponds to a timing of 1.
41 public LinearInt(int fromValue, int toValue, Timing timing) argument
44 this.toValue = toValue;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
H A DLinearColor.java33 private final Color toValue; field in class:LinearColor
43 * @param toValue the value that corresponds to a timing of 1.
46 public LinearColor(Color fromValue, Color toValue, Timing timing) argument
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())));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCrossfadeValue.h46 static PassRefPtr<CSSCrossfadeValue> create(PassRefPtr<CSSValue> fromValue, PassRefPtr<CSSValue> toValue) argument
48 return adoptRef(new CSSCrossfadeValue(fromValue, toValue));
71 CSSCrossfadeValue(PassRefPtr<CSSValue> fromValue, PassRefPtr<CSSValue> toValue) argument
74 , m_toValue(toValue)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGLength.h130 float toValue = valueInSpecifiedUnits(); local
132 length.newValueSpecifiedUnits(fromType, WebCore::blend(fromValue, toValue, progress), exceptionState);
134 length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress), exceptionState);
152 float toValue = valueInSpecifiedUnits(); local
153 length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress), exceptionState);
H A DSVGPathBlender.cpp57 float toValue = blendMode == BlendHorizontal ? m_toCurrentPoint.x() : m_toCurrentPoint.y(); local
60 float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
66 float currentValue = blend(fromValue, toValue, m_progress);
H A DSVGAnimationElement.cpp294 else if (!toValue().isEmpty())
333 String SVGAnimationElement::toValue() const function in class:WebCore::SVGAnimationElement
582 String to = toValue();
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/SwingUtil.class SwingUtil.java package proguard ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1222 milliseconds