Searched defs:fromValue (Results 1 - 16 of 16) sorted by relevance

/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/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DIpoHelper.java147 public Ipo fromValue(float constValue) { method in class:IpoHelper
/external/webkit/Source/WebCore/platform/
H A DLength.h196 float fromValue = from.isZero() ? 0 : from.value(); local
198 return Length(fromValue + (toValue - fromValue) * progress, resultType);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DAndroidAnimation.cpp234 FloatAnimationValue* fromValue = (FloatAnimationValue*) m_operations->at(from); local
237 ALOGV("[layer %d] opacity fromValue %x, key %.2f, toValue %x, key %.2f for progress %.2f",
239 fromValue, fromValue->keyTime(),
245 const TimingFunction* timingFunction = fromValue->timingFunction();
246 progress = applyTimingFunction(fromValue->keyTime(), toValue->keyTime(),
250 float value = fromValue->value() + ((toValue->value() - fromValue->value()) * progress);
276 TransformAnimationValue* fromValue = (TransformAnimationValue*) m_operations->at(from); local
279 ALOGV("[layer %d] fromValue
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGPathBlender.cpp53 float fromValue = blendMode == BlendHorizontal ? m_fromCurrentPoint.x() : m_fromCurrentPoint.y(); local
63 float currentValue = blendAnimatedFloat(fromValue, toValue, m_progress);
H A DSVGAnimationElement.cpp228 return fromValue().isEmpty() ? ToAnimation : FromToAnimation;
230 return fromValue().isEmpty() ? ByAnimation : FromByAnimation;
274 String SVGAnimationElement::fromValue() const function in class:WebCore::SVGAnimationElement
507 String from = fromValue();
/external/webkit/Source/JavaScriptCore/runtime/
H A DArrayPrototype.cpp1114 JSValue fromValue = exec->argument(1); local
1115 if (!fromValue.isUndefined()) {
1116 double fromDouble = fromValue.toInteger(exec);
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp1783 float fromValue; local
1784 getTransformFunctionValue(startValue->value()->at(functionIndex), transformOpType, boxSize, fromValue);
1785 basicAnim->setFromValue(fromValue);
1791 FloatPoint3D fromValue; local
1792 getTransformFunctionValue(startValue->value()->at(functionIndex), transformOpType, boxSize, fromValue);
1793 basicAnim->setFromValue(fromValue);
1799 TransformationMatrix fromValue; local
1800 getTransformFunctionValue(startValue->value()->at(functionIndex), transformOpType, boxSize, fromValue);
1801 basicAnim->setFromValue(fromValue);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.cpp1446 virtual void applyFrame(const T& fromValue, const T& toValue, qreal progress) = 0;
1495 const T& fromValue = fromKeyframe.value; local
1502 applyFrame(fromValue, toValue, progress);
1601 virtual void applyFrame(const qreal& fromValue, const qreal& toValue, qreal progress) argument
1603 qreal opacity = qBound(qreal(0), fromValue + (toValue - fromValue) * progress, qreal(1));
/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 ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 414 milliseconds