Searched defs:ROUND_HALF_UP (Results 1 - 15 of 15) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/math/
H A DMathContext.java61 * (<code>9, SCIENTIFIC, false, ROUND_HALF_UP</code>).
67 * settings were (<code>0, PLAIN, false, ROUND_HALF_UP</code>).
197 public static final int ROUND_HALF_UP=4; field in class:MathContext
282 * @see #ROUND_HALF_UP
294 private static final int DEFAULT_ROUNDINGMODE=ROUND_HALF_UP;
302 private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
305 private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
320 * roundingMode=ROUND_HALF_UP</code>.
323 * @see #ROUND_HALF_UP
496 * {@link #ROUND_HALF_UP},
[all...]
H A DBigDecimal.java136 * form=SCIENTIFIC, lostDigits=false, roundingMode=ROUND_HALF_UP</code>) perform general-purpose floating point
141 * form=PLAIN, lostDigits=false, roundingMode=ROUND_HALF_UP</code>; these settings perform fixed point arithmetic with
298 * @see MathContext#ROUND_HALF_UP
300 public static final int ROUND_HALF_UP = android.icu.math.MathContext.ROUND_HALF_UP; field in class:BigDecimal
1285 * rounding mode is {@link MathContext#ROUND_HALF_UP}.
2006 * will be the default, <code>MathContext.ROUND_HALF_UP</code>.
2022 return format(before, after, -1, -1, android.icu.math.MathContext.SCIENTIFIC, ROUND_HALF_UP);
2067 * </code>. The default (<code>ROUND_HALF_UP</code>) may also be selected by using the value -1, as before.
2085 * {@link MathContext#ROUND_HALF_UP}
[all...]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
H A DMathContext.java60 * (<code>9, SCIENTIFIC, false, ROUND_HALF_UP</code>).
66 * settings were (<code>0, PLAIN, false, ROUND_HALF_UP</code>).
206 public static final int ROUND_HALF_UP=4; field in class:MathContext
293 * @see #ROUND_HALF_UP
305 private static final int DEFAULT_ROUNDINGMODE=ROUND_HALF_UP;
313 private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
316 private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
331 * roundingMode=ROUND_HALF_UP</code>.
334 * @see #ROUND_HALF_UP
515 * {@link #ROUND_HALF_UP},
[all...]
H A DBigDecimal.java133 * form=SCIENTIFIC, lostDigits=false, roundingMode=ROUND_HALF_UP</code>) perform general-purpose floating point
138 * form=PLAIN, lostDigits=false, roundingMode=ROUND_HALF_UP</code>; these settings perform fixed point arithmetic with
304 * @see MathContext#ROUND_HALF_UP
307 public static final int ROUND_HALF_UP = com.ibm.icu.math.MathContext.ROUND_HALF_UP; field in class:BigDecimal
1308 * rounding mode is {@link MathContext#ROUND_HALF_UP}.
2052 * will be the default, <code>MathContext.ROUND_HALF_UP</code>.
2069 return format(before, after, -1, -1, com.ibm.icu.math.MathContext.SCIENTIFIC, ROUND_HALF_UP);
2114 * </code>. The default (<code>ROUND_HALF_UP</code>) may also be selected by using the value -1, as before.
2132 * {@link MathContext#ROUND_HALF_UP}
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
H A DMathContext.java60 * (<code>9, SCIENTIFIC, false, ROUND_HALF_UP</code>).
66 * settings were (<code>0, PLAIN, false, ROUND_HALF_UP</code>).
206 public static final int ROUND_HALF_UP=4; field in class:MathContext
293 * @see #ROUND_HALF_UP
305 private static final int DEFAULT_ROUNDINGMODE=ROUND_HALF_UP;
313 private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
316 private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
331 * roundingMode=ROUND_HALF_UP</code>.
334 * @see #ROUND_HALF_UP
515 * {@link #ROUND_HALF_UP},
[all...]
H A DBigDecimal.java135 * form=SCIENTIFIC, lostDigits=false, roundingMode=ROUND_HALF_UP</code>) perform general-purpose floating point
140 * form=PLAIN, lostDigits=false, roundingMode=ROUND_HALF_UP</code>; these settings perform fixed point arithmetic with
306 * @see MathContext#ROUND_HALF_UP
309 public static final int ROUND_HALF_UP = com.ibm.icu.math.MathContext.ROUND_HALF_UP; field in class:BigDecimal
1311 * rounding mode is {@link MathContext#ROUND_HALF_UP}.
2058 * will be the default, <code>MathContext.ROUND_HALF_UP</code>.
2075 return format(before, after, -1, -1, com.ibm.icu.math.MathContext.SCIENTIFIC, ROUND_HALF_UP);
2120 * </code>. The default (<code>ROUND_HALF_UP</code>) may also be selected by using the value -1, as before.
2138 * {@link MathContext#ROUND_HALF_UP}
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
H A DDfpField.java38 ROUND_HALF_UP, enum constant in enum:DfpField.RoundingMode
/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/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 773 milliseconds