/external/cronet/third_party/icu/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 | 210 macros.notation = ScientificNotation( in oldToNew()
|
D | number_skeletons.cpp | 990 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption() 1014 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption()
|
/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 | 210 macros.notation = ScientificNotation( in oldToNew()
|
D | number_skeletons.cpp | 990 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption() 1014 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption()
|
/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 | 1036 macros.notation = ((ScientificNotation) macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption() 1059 macros.notation = ((ScientificNotation) macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption() 1507 } else if (macros.notation instanceof ScientificNotation) { 1508 ScientificNotation impl = (ScientificNotation) macros.notation;
|
D | NumberFormatterImpl.java | 356 if (macros.notation instanceof ScientificNotation) { in macrosToMicroGenerator() 357 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator()
|
D | NumberPropertyMapper.java | 254 macros.notation = new ScientificNotation( in oldToNew()
|
/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 | 1035 macros.notation = ((ScientificNotation) macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption() 1058 macros.notation = ((ScientificNotation) macros.notation).withExponentSignDisplay(sign); in parseExponentSignOption() 1506 } else if (macros.notation instanceof ScientificNotation) { 1507 ScientificNotation impl = (ScientificNotation) macros.notation;
|
D | NumberFormatterImpl.java | 355 if (macros.notation instanceof ScientificNotation) { in macrosToMicroGenerator() 356 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator()
|
D | NumberPropertyMapper.java | 253 macros.notation = new ScientificNotation( in oldToNew()
|
/external/icu/libicu/cts_headers/unicode/ |
D | numberformatter.h | 117 class ScientificNotation; variable 225 static ScientificNotation scientific(); 249 static ScientificNotation engineering(); 390 friend class ScientificNotation; variable 409 class U_I18N_API ScientificNotation : public Notation { 424 ScientificNotation withMinExponentDigits(int32_t minExponentDigits) const; 439 ScientificNotation withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const; 446 …ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
|
/external/icu/icu4c/source/i18n/unicode/ |
D | numberformatter.h | 117 class ScientificNotation; variable 225 static ScientificNotation scientific(); 249 static ScientificNotation engineering(); 390 friend class ScientificNotation; variable 409 class U_I18N_API ScientificNotation : public Notation { 424 ScientificNotation withMinExponentDigits(int32_t minExponentDigits) const; 439 ScientificNotation withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const; 446 …ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
|
/external/cronet/third_party/icu/source/i18n/unicode/ |
D | numberformatter.h | 117 class ScientificNotation; variable 225 static ScientificNotation scientific(); 249 static ScientificNotation engineering(); 390 friend class ScientificNotation; variable 409 class U_I18N_API ScientificNotation : public Notation { 424 ScientificNotation withMinExponentDigits(int32_t minExponentDigits) const; 439 ScientificNotation withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const; 446 …ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt, impl::digits_t fMinExponentDi…
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 48 import android.icu.number.ScientificNotation; 5858 ScientificNotation.class.getDeclaredMethod("withMinExponentDigits", Integer.TYPE), in validRanges()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 47 import com.ibm.icu.number.ScientificNotation; 5855 ScientificNotation.class.getDeclaredMethod("withMinExponentDigits", Integer.TYPE), in validRanges()
|
/external/icu/android_icu4j/api/public/ |
D | current.txt | 1760 method public static android.icu.number.ScientificNotation engineering(); 1761 method public static android.icu.number.ScientificNotation scientific(); 1891 public class ScientificNotation extends android.icu.number.Notation { 1892 …method public android.icu.number.ScientificNotation withExponentSignDisplay(android.icu.number.Num… 1893 method public android.icu.number.ScientificNotation withMinExponentDigits(int);
|
/external/icu/icu4j/tools/build/ |
D | icu4j63.api3.gz |
|
D | icu4j65.api3.gz | 12;ICU4J 65.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j66.api3.gz |
|