Home
last modified time | relevance | path

Searched refs:ScientificNotation (Results 1 – 25 of 28) sorted by relevance

12

/external/icu/android_icu4j/src/main/java/android/icu/number/
DNotation.java17 private static final ScientificNotation SCIENTIFIC = new ScientificNotation(1,
21 private static final ScientificNotation ENGINEERING = new ScientificNotation(3,
57 public static ScientificNotation scientific() { in scientific()
83 public static ScientificNotation engineering() { in engineering()
DScientificNotation.java30 public class ScientificNotation extends Notation { class
37 /* package-private */ ScientificNotation( in ScientificNotation() method in ScientificNotation
62 public ScientificNotation withMinExponentDigits(int minExponentDigits) { in withMinExponentDigits()
64 ScientificNotation other = createCopy(); in withMinExponentDigits()
87 public ScientificNotation withExponentSignDisplay(SignDisplay exponentSignDisplay) { in withExponentSignDisplay()
88 ScientificNotation other = createCopy(); in withExponentSignDisplay()
94 ScientificNotation createCopy() { in createCopy()
95 return new ScientificNotation( in createCopy()
127 final ScientificNotation notation;
134 ScientificNotation notation, in ScientificHandler()
DNumberSkeletonImpl.java993 macros.notation = ((ScientificNotation) macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption()
1016 macros.notation = ((ScientificNotation) macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption()
1471 } else if (macros.notation instanceof ScientificNotation) { in notation()
1472 ScientificNotation impl = (ScientificNotation) macros.notation; in notation()
DNumberFormatterImpl.java352 if (macros.notation instanceof ScientificNotation) { in macrosToMicroGenerator()
353 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator()
DNumberPropertyMapper.java251 macros.notation = new ScientificNotation( in oldToNew()
/external/icu/icu4c/source/i18n/
Dnumber_notation.cpp16 ScientificNotation Notation::scientific() { in scientific()
28 ScientificNotation Notation::engineering() { in engineering()
39 ScientificNotation::ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, in ScientificNotation() function in ScientificNotation
68 ScientificNotation
69 ScientificNotation::withMinExponentDigits(int32_t minExponentDigits) const { in withMinExponentDigits()
80 ScientificNotation
81 ScientificNotation::withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const { in withExponentSignDisplay()
Dnumber_mapper.cpp209 macros.notation = ScientificNotation( in oldToNew()
Dnumber_skeletons.cpp927 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption()
951 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DNotation.java17 private static final ScientificNotation SCIENTIFIC = new ScientificNotation(1,
21 private static final ScientificNotation ENGINEERING = new ScientificNotation(3,
58 public static ScientificNotation scientific() { in scientific()
85 public static ScientificNotation engineering() { in engineering()
DScientificNotation.java30 public class ScientificNotation extends Notation { class
37 /* package-private */ ScientificNotation( in ScientificNotation() method in ScientificNotation
63 public ScientificNotation withMinExponentDigits(int minExponentDigits) { in withMinExponentDigits()
65 ScientificNotation other = createCopy(); in withMinExponentDigits()
89 public ScientificNotation withExponentSignDisplay(SignDisplay exponentSignDisplay) { in withExponentSignDisplay()
90 ScientificNotation other = createCopy(); in withExponentSignDisplay()
96 ScientificNotation createCopy() { in createCopy()
97 return new ScientificNotation( in createCopy()
129 final ScientificNotation notation;
136 ScientificNotation notation, in ScientificHandler()
DNumberSkeletonImpl.java992 macros.notation = ((ScientificNotation) macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption()
1015 macros.notation = ((ScientificNotation) macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption()
1470 } else if (macros.notation instanceof ScientificNotation) { in notation()
1471 ScientificNotation impl = (ScientificNotation) macros.notation; in notation()
DNumberFormatterImpl.java351 if (macros.notation instanceof ScientificNotation) { in macrosToMicroGenerator()
352 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator()
DNumberPropertyMapper.java250 macros.notation = new ScientificNotation( in oldToNew()
/external/icu/libicu/cts_headers/unicode/
Dnumberformatter.h116 class ScientificNotation; variable
224 static ScientificNotation scientific();
248 static ScientificNotation engineering();
389 friend class ScientificNotation; variable
408 class U_I18N_API ScientificNotation : public Notation {
423 ScientificNotation withMinExponentDigits(int32_t minExponentDigits) const;
438 ScientificNotation withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const;
445ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
/external/icu/icu4c/source/i18n/unicode/
Dnumberformatter.h116 class ScientificNotation; variable
224 static ScientificNotation scientific();
248 static ScientificNotation engineering();
389 friend class ScientificNotation; variable
408 class U_I18N_API ScientificNotation : public Notation {
423 ScientificNotation withMinExponentDigits(int32_t minExponentDigits) const;
438 ScientificNotation withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const;
445ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DNumberFormatterApiTest.java44 import com.ibm.icu.number.ScientificNotation;
3937 ScientificNotation.class.getDeclaredMethod("withMinExponentDigits", Integer.TYPE), in validRanges()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DNumberFormatterApiTest.java45 import android.icu.number.ScientificNotation;
3940 ScientificNotation.class.getDeclaredMethod("withMinExponentDigits", Integer.TYPE), in validRanges()
/external/icu/android_icu4j/api/public/
Dcurrent.txt1698 method public static android.icu.number.ScientificNotation engineering();
1699 method public static android.icu.number.ScientificNotation scientific();
1813 public class ScientificNotation extends android.icu.number.Notation {
1814 …method public android.icu.number.ScientificNotation withExponentSignDisplay(android.icu.number.Num…
1815 method public android.icu.number.ScientificNotation withMinExponentDigits(int);
/external/cldr/tools/java/libs/
Dicu4j.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ ...
/external/icu/icu4j/tools/build/
Dicu4j61.api3.gz
Dicu4j62.api3.gz12;ICU4J 62.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j60.api3.gz
Dicu4j65.api3.gz
Dicu4j64.api3.gz
Dicu4j63.api3.gz12;ICU4J 63.1;; 2ST@3.6;PB;NS;NF;NS; ...

12