Searched refs:endValue (Results 1 – 6 of 6) sorted by relevance
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | FastMath.java | 106 public static float interpolateLinear(float scale, float startValue, float endValue) { in interpolateLinear() argument 107 if (startValue == endValue) { in interpolateLinear() 114 return endValue; in interpolateLinear() 116 return ((1f - scale) * startValue) + (scale * endValue); in interpolateLinear() 132 …public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vect… in interpolateLinear() argument 136 store.x = interpolateLinear(scale, startValue.x, endValue.x); in interpolateLinear() 137 store.y = interpolateLinear(scale, startValue.y, endValue.y); in interpolateLinear() 138 store.z = interpolateLinear(scale, startValue.z, endValue.z); in interpolateLinear() 154 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue) { in interpolateLinear() argument 155 return interpolateLinear(scale, startValue, endValue, null); in interpolateLinear() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/ |
D | SliceFunction.java | 40 Value endValue = args[2]; in execute() local 43 int end = endValue.asNumber(); in execute() 65 || startValue.isPartiallyEscaped() || endValue.isPartiallyEscaped()); in execute()
|
/external/icu4c/i18n/ |
D | calendar.cpp | 2341 int32_t endValue = getMinimum(field); in getActualMinimum() local 2344 if (fieldValue == endValue) { in getActualMinimum() 2371 } while (fieldValue >= endValue); in getActualMinimum() 3187 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, … in getActualHelper() argument 3190 …fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(sta… in getActualHelper() 3192 if (startValue == endValue) { in getActualHelper() 3197 int32_t delta = (endValue > startValue) ? 1 : -1; in getActualHelper() 3239 } while (startValue != endValue); in getActualHelper()
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
D | GraphicsLayerCA.cpp | 1768 …const TransformAnimationValue* endValue = static_cast<const TransformAnimationValue*>(valueList.at… in setTransformAnimationEndpoints() local 1773 endValue->value()->apply(boxSize, toTransform); in setTransformAnimationEndpoints() 1788 …getTransformFunctionValue(endValue->value()->at(functionIndex), transformOpType, boxSize, toValue); in setTransformAnimationEndpoints() 1796 …getTransformFunctionValue(endValue->value()->at(functionIndex), transformOpType, boxSize, toValue); in setTransformAnimationEndpoints() 1804 …getTransformFunctionValue(endValue->value()->at(functionIndex), transformOpType, boxSize, toValue); in setTransformAnimationEndpoints()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | inspector.js | 877 var endValue = end[key]; 880 … var newValue = cubicInOut(complete, startValue, endValue - startValue, duration); 883 … style.setProperty(key, endValue + (key in propertyUnit ? propertyUnit[key] : defaultUnit));
|
/external/icu4c/i18n/unicode/ |
D | calendar.h | 1648 …int32_t getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCod…
|