Searched refs:endValue (Results 1 - 13 of 13) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DSliceFunction.java40 Value endValue = args[2];
43 int end = endValue.asNumber();
65 || startValue.isPartiallyEscaped() || endValue.isPartiallyEscaped());
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java95 * Linear interpolation from startValue to endValue by the given percent.
96 * Basically: ((1 - percent) * startValue) + (percent * endValue)
99 * scale value to use. if 1, use endValue, if 0, use startValue.
102 * @param endValue
104 * @return The interpolated value between startValue and endValue.
106 public static float interpolateLinear(float scale, float startValue, float endValue) { argument
107 if (startValue == endValue) {
114 return endValue;
116 return ((1f - scale) * startValue) + (scale * endValue);
120 * Linear interpolation from startValue to endValue b
132 interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) argument
154 interpolateLinear(float scale, Vector3f startValue, Vector3f endValue) argument
168 extrapolateLinear(float scale, float startValue, float endValue) argument
186 extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) argument
209 extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcalendar.cpp2722 int32_t endValue = getMinimum(field); local
2725 if (fieldValue == endValue) {
2752 } while (fieldValue >= endValue);
3688 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const argument
3691 fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(status));
3693 if (startValue == endValue) {
3698 int32_t delta = (endValue > startValue) ? 1 : -1;
3740 } while (startValue != endValue);
/external/icu/icu4c/source/i18n/unicode/
H A Dcalendar.h1850 * @param endValue ending (greatest max) value of field
1854 int32_t getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCalendar.java2653 private int getActualHelper(int field, int startValue, int endValue) { argument
2655 if (startValue == endValue) {
2660 final int delta = (endValue > startValue) ? 1 : -1;
2695 } while (startValue != endValue);
/external/jsoncpp/chromium-overrides/include/json/
H A Dvalue.h225 Value( const char *beginValue, const char *endValue );
/external/jsoncpp/include/json/
H A Dvalue.h225 Value( const char *beginValue, const char *endValue );
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp390 const char *endValue )
399 (unsigned int)(endValue - beginValue) );
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp386 const char *endValue )
395 (unsigned int)(endValue - beginValue) );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 318 milliseconds