Home
last modified time | relevance | path

Searched refs:Notation (Results 1 - 25 of 55) sorted by relevance

123

/third_party/icu/icu4c/source/i18n/
H A Dnumber_notation.cpp16 ScientificNotation Notation::scientific() { in scientific()
28 ScientificNotation Notation::engineering() { in engineering()
52 Notation Notation::compactShort() { in compactShort()
58 Notation Notation::compactLong() { in compactLong()
64 Notation Notation::simple() { in simple()
H A Dnumber_scientific.h46 ScientificHandler(const Notation *notation, const DecimalFormatSymbols *symbols,
55 const Notation::ScientificSettings fSettings;
H A Dnumber_skeletons.cpp167 Notation stem_to_object::notation(skeleton::StemEnum stem) { in notation()
170 return Notation::compactShort(); in notation()
172 return Notation::compactLong(); in notation()
174 return Notation::scientific(); in notation()
176 return Notation::engineering(); in notation()
178 return Notation::simple(); in notation()
1282 macros.notation = (isEngineering ? Notation::engineering() : Notation::scientific()) in parseScientificStem()
1527 if (macros.notation.fType == Notation::NTN_COMPACT) { in notation()
1541 } else if (macros.notation.fType == Notation in notation()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_notation.cpp16 ScientificNotation Notation::scientific() { in scientific()
28 ScientificNotation Notation::engineering() { in engineering()
52 Notation Notation::compactShort() { in compactShort()
58 Notation Notation::compactLong() { in compactLong()
64 Notation Notation::simple() { in simple()
H A Dnumber_scientific.h46 ScientificHandler(const Notation *notation, const DecimalFormatSymbols *symbols,
55 const Notation::ScientificSettings fSettings;
H A Dnumber_skeletons.cpp167 Notation stem_to_object::notation(skeleton::StemEnum stem) { in notation()
170 return Notation::compactShort(); in notation()
172 return Notation::compactLong(); in notation()
174 return Notation::scientific(); in notation()
176 return Notation::engineering(); in notation()
178 return Notation::simple(); in notation()
1282 macros.notation = (isEngineering ? Notation::engineering() : Notation::scientific()) in parseScientificStem()
1527 if (macros.notation.fType == Notation::NTN_COMPACT) { in notation()
1541 } else if (macros.notation.fType == Notation in notation()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_notation.cpp16 ScientificNotation Notation::scientific() { in scientific()
28 ScientificNotation Notation::engineering() { in engineering()
52 Notation Notation::compactShort() { in compactShort()
58 Notation Notation::compactLong() { in compactLong()
64 Notation Notation::simple() { in simple()
H A Dnumber_scientific.h46 ScientificHandler(const Notation *notation, const DecimalFormatSymbols *symbols,
55 const Notation::ScientificSettings& fSettings;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DNumberFormatterApiTest.java40 import ohos.global.icu.number.Notation;
99 NumberFormatter.with().notation(Notation.simple()), in notationSimple()
127 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
143 NumberFormatter.with().notation(Notation.engineering()), in notationScientific()
159 NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)), in notationScientific()
175 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)), in notationScientific()
191 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
200 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
209 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
221 NumberFormatter.with().notation(Notation in notationCompact()
[all...]
H A DNumberRangeFormatterTest.java24 import ohos.global.icu.number.Notation;
433 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactLong())), in testCollapse()
450 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactLong())), in testCollapse()
466 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
483 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
500 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
517 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
534 .numberFormatterBoth(NumberFormatter.with().notation(Notation.scientific())), in testCollapse()
551 .numberFormatterBoth(NumberFormatter.with().notation(Notation.scientific())), in testCollapse()
619 .numberFormatterBoth(NumberFormatter.with().notation(Notation in testIdentity()
[all...]
/third_party/node/deps/v8/src/objects/
H A Djs-number-format.cc67 // [[Notation]] is one of the String values "standard", "scientific",
75 enum class Notation { class
85 // is only used when [[Notation]] has the value "compact".
192 icu::number::Notation ToICUNotation(Notation notation, in ToICUNotation()
195 case Notation::STANDARD: in ToICUNotation()
196 return icu::number::Notation::simple(); in ToICUNotation()
197 case Notation::SCIENTIFIC: in ToICUNotation()
198 return icu::number::Notation::scientific(); in ToICUNotation()
199 case Notation in ToICUNotation()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DNumberFormatterApiTest.java37 import com.ibm.icu.number.Notation;
100 NumberFormatter.with().notation(Notation.simple()), in notationSimple()
128 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
144 NumberFormatter.with().notation(Notation.engineering()), in notationScientific()
160 NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)), in notationScientific()
176 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)), in notationScientific()
192 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
201 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
210 NumberFormatter.with().notation(Notation.scientific()), in notationScientific()
222 NumberFormatter.with().notation(Notation in notationCompact()
[all...]
H A DNumberRangeFormatterTest.java23 import com.ibm.icu.number.Notation;
431 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactLong())), in testCollapse()
448 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactLong())), in testCollapse()
464 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
481 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
498 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
515 .numberFormatterBoth(NumberFormatter.with().notation(Notation.compactShort()).unit(MeasureUnit.METER)), in testCollapse()
532 .numberFormatterBoth(NumberFormatter.with().notation(Notation.scientific())), in testCollapse()
549 .numberFormatterBoth(NumberFormatter.with().notation(Notation.scientific())), in testCollapse()
617 .numberFormatterBoth(NumberFormatter.with().notation(Notation in testIdentity()
[all...]
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dnumberformatter.h43 * .notation(Notation::compactShort())
74 * UnlocalizedNumberFormatter formatter = UnlocalizedNumberFormatter::with().notation(Notation::scientific());
120 class Notation;
191 typedef Notation CompactNotation;
198 typedef Notation SimpleNotation;
205 class U_I18N_API Notation : public UMemory { class
378 Notation(const NotationType &type, const NotationUnion &union_) : fType(type), fUnion(union_) {} in Notation() function in number::Notation
380 Notation(UErrorCode errorCode) : fType(NTN_ERROR) { in Notation() function in number::Notation
384 Notation() : fType(NTN_SIMPLE), fUnion() {} in Notation() function in number::Notation
411 * To create a ScientificNotation, use one of the factory methods in {@link Notation}
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Dnumberformatter.h43 * .notation(Notation::compactShort())
74 * UnlocalizedNumberFormatter formatter = UnlocalizedNumberFormatter::with().notation(Notation::scientific());
116 class Notation;
185 typedef Notation CompactNotation;
192 typedef Notation SimpleNotation;
199 class U_I18N_API Notation : public UMemory { class
372 Notation(const NotationType &type, const NotationUnion &union_) : fType(type), fUnion(union_) {} in Notation() function in number::Notation
374 Notation(UErrorCode errorCode) : fType(NTN_ERROR) { in Notation() function in number::Notation
378 Notation() : fType(NTN_SIMPLE), fUnion() {} in Notation() function in number::Notation
405 * To create a ScientificNotation, use one of the factory methods in {@link Notation}
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dnumberformatter.h41 * .notation(Notation::compactShort())
72 * UnlocalizedNumberFormatter formatter = UnlocalizedNumberFormatter::with().notation(Notation::scientific());
114 class Notation;
183 typedef Notation CompactNotation;
190 typedef Notation SimpleNotation;
197 class U_I18N_API Notation : public UMemory { class
370 Notation(const NotationType &type, const NotationUnion &union_) : fType(type), fUnion(union_) {} in Notation() function in number::Notation
372 Notation(UErrorCode errorCode) : fType(NTN_ERROR) { in Notation() function in number::Notation
376 Notation() : fType(NTN_SIMPLE), fUnion() {} in Notation() function in number::Notation
403 * To create a ScientificNotation, use one of the factory methods in {@link Notation}
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DNotation.java14 public class Notation { class
29 /* package-private */ Notation() { in Notation() method in Notation
H A DSimpleNotation.java10 * in {@link Notation}.
15 public class SimpleNotation extends Notation {
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
H A DNotation.java15 public class Notation { class
30 /* package-private */ Notation() { in Notation() method in Notation
H A DSimpleNotation.java11 * in {@link Notation}.
16 public class SimpleNotation extends Notation {
H A DNumberFormatterSettings.java75 * Pass this method the return value of a {@link Notation} factory method. For example:
78 * NumberFormatter.with().notation(Notation.compactShort())
86 * @see Notation
88 public T notation(Notation notation) { in notation()
194 * the compact notation rounding precision is used (see {@link Notation#compactShort} for details), or
554 macros.notation = (Notation) current.value; in resolve()
/third_party/icu/icu4c/source/test/intltest/
H A Dnumbertest_api.cpp160 NumberFormatter::with().notation(Notation::simple()), in notationSimple()
188 NumberFormatter::with().notation(Notation::scientific()), in notationScientific()
204 NumberFormatter::with().notation(Notation::engineering()), in notationScientific()
221 Notation::scientific().withExponentSignDisplay(UNumberSignDisplay::UNUM_SIGN_ALWAYS)), in notationScientific()
237 NumberFormatter::with().notation(Notation::scientific().withMinExponentDigits(2)), in notationScientific()
253 NumberFormatter::with().notation(Notation::scientific()), in notationScientific()
262 NumberFormatter::with().notation(Notation::scientific()), in notationScientific()
271 NumberFormatter::with().notation(Notation::scientific()), in notationScientific()
282 NumberFormatter::with().notation(Notation::compactShort()), in notationCompact()
298 NumberFormatter::with().notation(Notation in notationCompact()
[all...]
H A Dnumbertest_range.cpp438 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactLong())), in testCollapse()
455 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactLong())), in testCollapse()
471 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactShort()).unit(METER)), in testCollapse()
488 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactShort()).unit(METER)), in testCollapse()
505 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactShort()).unit(METER)), in testCollapse()
522 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactShort()).unit(METER)), in testCollapse()
539 .numberFormatterBoth(NumberFormatter::with().notation(Notation::scientific())), in testCollapse()
556 .numberFormatterBoth(NumberFormatter::with().notation(Notation::scientific())), in testCollapse()
623 .numberFormatterBoth(NumberFormatter::with().notation(Notation::compactShort())), in testIdentity()
767 .notation(Notation in testFieldPositions()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DMacroProps.java10 import ohos.global.icu.number.Notation;
24 public Notation notation;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DMacroProps.java9 import com.ibm.icu.number.Notation;
20 public Notation notation;

Completed in 30 milliseconds

123