/external/icu/android_icu4j/src/main/java/android/icu/number/ |
Notation.java | 19 private static final ScientificNotation SCIENTIFIC = new ScientificNotation(1, 35 * Print the number using scientific notation (also known as scientific form, standard index form, or 36 * standard form in the UK). The format for scientific notation varies by locale; for example, many 60 public static ScientificNotation scientific() { method in class:Notation 61 return SCIENTIFIC; 65 * Print the number using engineering notation, a variant of scientific notation in which the
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
Notation.java | 18 private static final ScientificNotation SCIENTIFIC = new ScientificNotation(1, 34 * Print the number using scientific notation (also known as scientific form, standard index form, or 35 * standard form in the UK). The format for scientific notation varies by locale; for example, many 60 public static ScientificNotation scientific() { method in class:Notation 61 return SCIENTIFIC; 65 * Print the number using engineering notation, a variant of scientific notation in which the
|
/external/icu/android_icu4j/src/main/java/android/icu/math/ |
MathContext.java | 61 * (<code>9, SCIENTIFIC, false, ROUND_HALF_UP</code>). 95 * @see #SCIENTIFIC 100 * Standard floating point notation (with scientific exponential 110 public static final int SCIENTIFIC=1; // 1 digit before . 121 * @see #SCIENTIFIC 247 * @see #SCIENTIFIC 291 private static final int DEFAULT_FORM=SCIENTIFIC; 319 * <code>digits=9 form=SCIENTIFIC lostDigits=false 322 * @see #SCIENTIFIC 433 if (setform==SCIENTIFIC){ [all...] |
BigDecimal.java | 136 * form=SCIENTIFIC, lostDigits=false, roundingMode=ROUND_HALF_UP</code>) perform general-purpose floating point 214 * The form of the exponential notation (scientific or engineering) is determined by the <code>form</code> setting. 361 * <li>MathContext.PLAIN -- no exponent needed <li>MathContext.SCIENTIFIC -- scientific notation required <li> [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/ |
MathContext.java | 60 * (<code>9, SCIENTIFIC, false, ROUND_HALF_UP</code>). 95 * @see #SCIENTIFIC 101 * Standard floating point notation (with scientific exponential 112 public static final int SCIENTIFIC=1; // 1 digit before . 123 * @see #SCIENTIFIC 258 * @see #SCIENTIFIC 302 private static final int DEFAULT_FORM=SCIENTIFIC; 330 * <code>digits=9 form=SCIENTIFIC lostDigits=false 333 * @see #SCIENTIFIC 449 if (setform==SCIENTIFIC){ [all...] |
BigDecimal.java | 133 * form=SCIENTIFIC, lostDigits=false, roundingMode=ROUND_HALF_UP</code>) perform general-purpose floating point 211 * The form of the exponential notation (scientific or engineering) is determined by the <code>form</code> setting. 370 * <li>MathContext.PLAIN -- no exponent needed <li>MathContext.SCIENTIFIC -- scientific notation required <li> [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/ |
MathContext.java | 60 * (<code>9, SCIENTIFIC, false, ROUND_HALF_UP</code>). 95 * @see #SCIENTIFIC 101 * Standard floating point notation (with scientific exponential 112 public static final int SCIENTIFIC=1; // 1 digit before . 123 * @see #SCIENTIFIC 258 * @see #SCIENTIFIC 302 private static final int DEFAULT_FORM=SCIENTIFIC; 330 * <code>digits=9 form=SCIENTIFIC lostDigits=false 333 * @see #SCIENTIFIC 449 if (setform==SCIENTIFIC){ [all...] |
BigDecimal.java | 135 * form=SCIENTIFIC, lostDigits=false, roundingMode=ROUND_HALF_UP</code>) perform general-purpose floating point 213 * The form of the exponential notation (scientific or engineering) is determined by the <code>form</code> setting. 372 * <li>MathContext.PLAIN -- no exponent needed <li>MathContext.SCIENTIFIC -- scientific notation required <li> [all...] |
/external/error_prone/jFormatString/ |
jFormatString-3.0.0.jar | |
/external/owasp/sanitizer/tools/findbugs/lib/ |
jFormatString.jar | |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/ |
DiagBigDecimalTest.java | 119 private static final android.icu.math.MathContext mcs = new android.icu.math.MathContext(9, android.icu.math.MathContext.SCIENTIFIC); 121 private static final android.icu.math.MathContext mcld = new android.icu.math.MathContext(9, android.icu.math.MathContext.SCIENTIFIC, true); // lost digits 122 private static final android.icu.math.MathContext mcld0 = new android.icu.math.MathContext(0, android.icu.math.MathContext.SCIENTIFIC, true); // lost digits, digits=0 395 if (!isJDK15OrLater) // for some reason we format using scientific [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/ |
DiagBigDecimalTest.java | 116 private static final com.ibm.icu.math.MathContext mcs = new com.ibm.icu.math.MathContext(9, com.ibm.icu.math.MathContext.SCIENTIFIC); 118 private static final com.ibm.icu.math.MathContext mcld = new com.ibm.icu.math.MathContext(9, com.ibm.icu.math.MathContext.SCIENTIFIC, true); // lost digits 119 private static final com.ibm.icu.math.MathContext mcld0 = new com.ibm.icu.math.MathContext(0, com.ibm.icu.math.MathContext.SCIENTIFIC, true); // lost digits, digits=0 392 if (!isJDK15OrLater) // for some reason we format using scientific [all...] |
/external/cldr/tools/java/org/unicode/cldr/test/ |
DisplayAndInputProcessor.java | 81 + "numbers/(decimal|currency|percent|scientific)Formats.+/(decimal|currency|percent|scientific)Format.*)"); [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
SerializableTestUtility.java | 668 int forms[] = {MathContext.PLAIN, MathContext.ENGINEERING, MathContext.SCIENTIFIC}; [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
SerializableTestUtility.java | 665 int forms[] = {MathContext.PLAIN, MathContext.ENGINEERING, MathContext.SCIENTIFIC}; [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
DecimalFormat_ICU58_Android.java | 55 * numbers ("123.4"), scientific notation ("1.23E4"), percentages ("12%"), and currency 110 * scientific, integer, iso currency, and plural currency format for each locale. 204 * <td>Separates mantissa and exponent in scientific notation. 368 * not use <a href="#sci">scientific notation</a> or <a href="#sigdig">significant 404 * <h4><a name="sci">Scientific Notation</a></h4> 406 * <p>Numbers in scientific notation are expressed as the product of a mantissa and a 410 * <code>DecimalFormat</code> can be instructed to use scientific notation through the API 412 * one or more digit characters indicates scientific notation. Example: "0.###E0" formats 435 * <li>When using scientific notation, the formatter controls the digit counts using [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
DecimalFormat_ICU58_Android.java | 54 * numbers ("123.4"), scientific notation ("1.23E4"), percentages ("12%"), and currency 109 * scientific, integer, iso currency, and plural currency format for each locale. 203 * <td>Separates mantissa and exponent in scientific notation. 367 * not use <a href="#sci">scientific notation</a> or <a href="#sigdig">significant 403 * <h4><a name="sci">Scientific Notation</a></h4> 405 * <p>Numbers in scientific notation are expressed as the product of a mantissa and a 409 * <code>DecimalFormat</code> can be instructed to use scientific notation through the API 411 * one or more digit characters indicates scientific notation. Example: "0.###E0" formats 434 * <li>When using scientific notation, the formatter controls the digit counts using [all...] |
/external/cldr/tools/java/libs/ |
icu4j.jar | |