/external/icu/icu4c/source/i18n/ |
D | number_notation.cpp | 16 ScientificNotation Notation::scientific() { in scientific() 28 ScientificNotation Notation::engineering() { in engineering() 39 Notation Notation::compactShort() { in compactShort() 45 Notation Notation::compactLong() { in compactLong() 51 Notation Notation::simple() { in simple()
|
D | number_scientific.h | 40 ScientificHandler(const Notation *notation, const DecimalFormatSymbols *symbols, 49 const Notation::ScientificSettings& fSettings;
|
D | number_formatimpl.cpp | 222 } else if (macros.notation.fType == Notation::NTN_COMPACT) { in macrosToMicroGenerator() 234 } else if (macros.notation.fType == Notation::NTN_COMPACT) { in macrosToMicroGenerator() 274 if (macros.notation.fType == Notation::NTN_SCIENTIFIC) { in macrosToMicroGenerator() 334 if (macros.notation.fType == Notation::NTN_COMPACT) { in macrosToMicroGenerator()
|
D | number_scientific.cpp | 92 icu::number::impl::ScientificHandler::ScientificHandler(const Notation *notation, const DecimalForm… in ScientificHandler()
|
D | number_fluent.cpp | 19 Derived NumberFormatterSettings<Derived>::notation(const Notation ¬ation) const { in notation()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 23 import android.icu.number.Notation; 69 NumberFormatter.with().notation(Notation.simple()), in notationSimple() 95 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 110 NumberFormatter.with().notation(Notation.engineering()), in notationScientific() 125 …NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)), in notationScientific() 140 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)), in notationScientific() 155 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 166 NumberFormatter.with().notation(Notation.compactShort()), in notationCompact() 181 NumberFormatter.with().notation(Notation.compactLong()), in notationCompact() 196 NumberFormatter.with().notation(Notation.compactShort()).unit(USD), in notationCompact() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 22 import com.ibm.icu.number.Notation; 66 NumberFormatter.with().notation(Notation.simple()), in notationSimple() 92 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 107 NumberFormatter.with().notation(Notation.engineering()), in notationScientific() 122 …NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)), in notationScientific() 137 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)), in notationScientific() 152 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 163 NumberFormatter.with().notation(Notation.compactShort()), in notationCompact() 178 NumberFormatter.with().notation(Notation.compactLong()), in notationCompact() 193 NumberFormatter.with().notation(Notation.compactShort()).unit(USD), in notationCompact() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | numbertest_api.cpp | 110 NumberFormatter::with().notation(Notation::scientific()), in notationScientific() 124 NumberFormatter::with().notation(Notation::engineering()), in notationScientific() 139 … Notation::scientific().withExponentSignDisplay(UNumberSignDisplay::UNUM_SIGN_ALWAYS)), in notationScientific() 153 NumberFormatter::with().notation(Notation::scientific().withMinExponentDigits(2)), in notationScientific() 167 NumberFormatter::with().notation(Notation::scientific()), in notationScientific() 176 NumberFormatter::with().notation(Notation::compactShort()), in notationCompact() 190 NumberFormatter::with().notation(Notation::compactLong()), in notationCompact() 204 NumberFormatter::with().notation(Notation::compactShort()).unit(USD), in notationCompact() 218 NumberFormatter::with().notation(Notation::compactShort()) in notationCompact() 234 NumberFormatter::with().notation(Notation::compactShort()) in notationCompact() [all …]
|
/external/icu/icu4c/source/i18n/unicode/ |
D | numberformatter.h | 280 class Notation; variable 311 typedef Notation CompactNotation; 312 typedef Notation SimpleNotation; 319 class U_I18N_API Notation : public UMemory { 487 Notation(const NotationType &type, const NotationUnion &union_) : fType(type), fUnion(union_) {} in Notation() function 489 Notation(UErrorCode errorCode) : fType(NTN_ERROR) { in Notation() function 493 Notation() : fType(NTN_SIMPLE), fUnion() {} in Notation() function 521 class U_I18N_API ScientificNotation : public Notation { 555 using Notation::Notation; 557 friend class Notation; variable [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/number/ |
D | Notation.java | 16 public class Notation { class 25 /* package-private */ Notation() { in Notation() method in Notation
|
D | SimpleNotation.java | 17 public class SimpleNotation extends Notation {
|
D | NumberFormatterSettings.java | 84 public T notation(Notation notation) { in notation() 460 macros.notation = (Notation) current.value; in resolve()
|
D | CompactNotation.java | 37 public class CompactNotation extends Notation {
|
D | NumberPropertyMapper.java | 277 macros.notation = Notation.compactLong(); in oldToNew() 279 macros.notation = Notation.compactShort(); in oldToNew()
|
D | ScientificNotation.java | 28 public class ScientificNotation extends Notation implements Cloneable {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
D | Notation.java | 15 public class Notation { class 24 /* package-private */ Notation() { in Notation() method in Notation
|
D | SimpleNotation.java | 16 public class SimpleNotation extends Notation {
|
D | NumberFormatterSettings.java | 84 public T notation(Notation notation) { in notation() 468 macros.notation = (Notation) current.value; in resolve()
|
D | CompactNotation.java | 36 public class CompactNotation extends Notation {
|
D | NumberPropertyMapper.java | 276 macros.notation = Notation.compactLong(); in oldToNew() 278 macros.notation = Notation.compactShort(); in oldToNew()
|
D | ScientificNotation.java | 27 public class ScientificNotation extends Notation implements Cloneable {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | MacroProps.java | 8 import com.ibm.icu.number.Notation; 18 public Notation notation;
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | MacroProps.java | 9 import android.icu.number.Notation; 22 public Notation notation;
|
/external/lzma/DOC/ |
D | 7zFormat.txt | 99 Notes about Notation and encoding
|
/external/jsoncpp/doc/ |
D | jsoncpp.dox | 5 <a HREF="http://www.json.org/">JSON (JavaScript Object Notation)</a>
|