Home
last modified time | relevance | path

Searched refs:Notation (Results 1 – 25 of 63) sorted by relevance

123

/external/icu/icu4c/source/i18n/
Dnumber_notation.cpp16 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()
Dnumber_scientific.h40 ScientificHandler(const Notation *notation, const DecimalFormatSymbols *symbols,
49 const Notation::ScientificSettings& fSettings;
Dnumber_formatimpl.cpp222 } 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()
Dnumber_scientific.cpp92 icu::number::impl::ScientificHandler::ScientificHandler(const Notation *notation, const DecimalForm… in ScientificHandler()
Dnumber_fluent.cpp19 Derived NumberFormatterSettings<Derived>::notation(const Notation &notation) const { in notation()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DNumberFormatterApiTest.java23 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/
DNumberFormatterApiTest.java22 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/
Dnumbertest_api.cpp110 NumberFormatter::with().notation(Notation::scientific()), in notationScientific()
124 NumberFormatter::with().notation(Notation::engineering()), in notationScientific()
139Notation::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/
Dnumberformatter.h280 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/
DNotation.java16 public class Notation { class
25 /* package-private */ Notation() { in Notation() method in Notation
DSimpleNotation.java17 public class SimpleNotation extends Notation {
DNumberFormatterSettings.java84 public T notation(Notation notation) { in notation()
460 macros.notation = (Notation) current.value; in resolve()
DCompactNotation.java37 public class CompactNotation extends Notation {
DNumberPropertyMapper.java277 macros.notation = Notation.compactLong(); in oldToNew()
279 macros.notation = Notation.compactShort(); in oldToNew()
DScientificNotation.java28 public class ScientificNotation extends Notation implements Cloneable {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DNotation.java15 public class Notation { class
24 /* package-private */ Notation() { in Notation() method in Notation
DSimpleNotation.java16 public class SimpleNotation extends Notation {
DNumberFormatterSettings.java84 public T notation(Notation notation) { in notation()
468 macros.notation = (Notation) current.value; in resolve()
DCompactNotation.java36 public class CompactNotation extends Notation {
DNumberPropertyMapper.java276 macros.notation = Notation.compactLong(); in oldToNew()
278 macros.notation = Notation.compactShort(); in oldToNew()
DScientificNotation.java27 public class ScientificNotation extends Notation implements Cloneable {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DMacroProps.java8 import com.ibm.icu.number.Notation;
18 public Notation notation;
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DMacroProps.java9 import android.icu.number.Notation;
22 public Notation notation;
/external/lzma/DOC/
D7zFormat.txt99 Notes about Notation and encoding
/external/jsoncpp/doc/
Djsoncpp.dox5 <a HREF="http://www.json.org/">JSON (JavaScript Object Notation)</a>

123