HomeSort by relevance Sort by last modified time
    Searched refs:ScientificNotation (Results 1 - 10 of 10) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/number/
Notation.java 19 private static final ScientificNotation SCIENTIFIC = new ScientificNotation(1, false, 1, SignDisplay.AUTO);
20 private static final ScientificNotation ENGINEERING = new ScientificNotation(3, false, 1, SignDisplay.AUTO);
49 * @return A ScientificNotation for chaining or passing to the NumberFormatter notation() setter.
53 public static ScientificNotation scientific() {
76 * @return A ScientificNotation for chaining or passing to the NumberFormatter notation() setter.
80 public static ScientificNotation engineering() {
ScientificNotation.java 22 * To create a ScientificNotation, use one of the factory methods in {@link Notation}.
28 public class ScientificNotation extends Notation implements Cloneable {
35 /* package-private */ ScientificNotation(int engineeringInterval, boolean requireMinInt, int minExponentDigits,
53 * @return A ScientificNotation, for chaining.
57 public ScientificNotation withMinExponentDigits(int minExponentDigits) {
59 ScientificNotation other = (ScientificNotation) this.clone();
78 * @return A ScientificNotation, for chaining.
82 public ScientificNotation withExponentSignDisplay(SignDisplay exponentSignDisplay) {
83 ScientificNotation other = (ScientificNotation) this.clone()
    [all...]
NumberFormatterImpl.java 218 if (macros.notation instanceof ScientificNotation) {
219 chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain);
NumberPropertyMapper.java 238 macros.notation = new ScientificNotation(
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
Notation.java 18 private static final ScientificNotation SCIENTIFIC = new ScientificNotation(1, false, 1, SignDisplay.AUTO);
19 private static final ScientificNotation ENGINEERING = new ScientificNotation(3, false, 1, SignDisplay.AUTO);
48 * @return A ScientificNotation for chaining or passing to the NumberFormatter notation() setter.
53 public static ScientificNotation scientific() {
76 * @return A ScientificNotation for chaining or passing to the NumberFormatter notation() setter.
81 public static ScientificNotation engineering() {
ScientificNotation.java 21 * To create a ScientificNotation, use one of the factory methods in {@link Notation}.
27 public class ScientificNotation extends Notation implements Cloneable {
34 /* package-private */ ScientificNotation(int engineeringInterval, boolean requireMinInt, int minExponentDigits,
52 * @return A ScientificNotation, for chaining.
57 public ScientificNotation withMinExponentDigits(int minExponentDigits) {
59 ScientificNotation other = (ScientificNotation) this.clone();
78 * @return A ScientificNotation, for chaining.
83 public ScientificNotation withExponentSignDisplay(SignDisplay exponentSignDisplay) {
84 ScientificNotation other = (ScientificNotation) this.clone()
    [all...]
NumberFormatterImpl.java 217 if (macros.notation instanceof ScientificNotation) {
218 chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain);
NumberPropertyMapper.java 237 macros.notation = new ScientificNotation(
  /external/icu/icu4c/source/i18n/
number_notation.cpp 16 ScientificNotation Notation::scientific() {
28 ScientificNotation Notation::engineering() {
55 ScientificNotation
56 ScientificNotation::withMinExponentDigits(int32_t minExponentDigits) const {
67 ScientificNotation
68 ScientificNotation::withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const {
  /external/icu/icu4c/source/i18n/unicode/
numberformatter.h 281 class ScientificNotation;
342 * @return A ScientificNotation for chaining or passing to the NumberFormatter notation() setter.
345 static ScientificNotation scientific();
366 * @return A ScientificNotation for chaining or passing to the NumberFormatter notation() setter.
369 static ScientificNotation engineering();
505 friend class ScientificNotation;
517 * To create a ScientificNotation, use one of the factory methods in {@link Notation}.
521 class U_I18N_API ScientificNotation : public Notation {
533 * @return A ScientificNotation, for chaining.
536 ScientificNotation withMinExponentDigits(int32_t minExponentDigits) const
    [all...]

Completed in 181 milliseconds