/external/icu/android_icu4j/src/main/java/android/icu/number/ |
D | Notation.java | 17 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()
|
D | ScientificNotation.java | 30 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()
|
D | NumberSkeletonImpl.java | 993 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()
|
D | NumberFormatterImpl.java | 352 if (macros.notation instanceof ScientificNotation) { in macrosToMicroGenerator() 353 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator()
|
D | NumberPropertyMapper.java | 251 macros.notation = new ScientificNotation( in oldToNew()
|
/external/icu/icu4c/source/i18n/ |
D | number_notation.cpp | 16 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()
|
D | number_mapper.cpp | 209 macros.notation = ScientificNotation( in oldToNew()
|
D | number_skeletons.cpp | 927 … 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/ |
D | Notation.java | 17 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()
|
D | ScientificNotation.java | 30 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()
|
D | NumberSkeletonImpl.java | 992 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()
|
D | NumberFormatterImpl.java | 351 if (macros.notation instanceof ScientificNotation) { in macrosToMicroGenerator() 352 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator()
|
D | NumberPropertyMapper.java | 250 macros.notation = new ScientificNotation( in oldToNew()
|
/external/icu/libicu/cts_headers/unicode/ |
D | numberformatter.h | 116 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; 445 …ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
|
/external/icu/icu4c/source/i18n/unicode/ |
D | numberformatter.h | 116 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; 445 …ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 44 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/ |
D | NumberFormatterApiTest.java | 45 import android.icu.number.ScientificNotation; 3940 ScientificNotation.class.getDeclaredMethod("withMinExponentDigits", Integer.TYPE), in validRanges()
|
/external/icu/android_icu4j/api/public/ |
D | current.txt | 1698 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/ |
D | icu4j.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ ... |
/external/icu/icu4j/tools/build/ |
D | icu4j61.api3.gz |
|
D | icu4j62.api3.gz | 12;ICU4J 62.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j60.api3.gz |
|
D | icu4j65.api3.gz |
|
D | icu4j64.api3.gz |
|
D | icu4j63.api3.gz | 12;ICU4J 63.1;;
2ST@3.6;PB;NS;NF;NS; ... |