Lines Matching refs:Notation

67 // [[Notation]] is one of the String values "standard", "scientific",
75 enum class Notation {
85 // is only used when [[Notation]] has the value "compact".
192 icu::number::Notation ToICUNotation(Notation notation,
195 case Notation::STANDARD:
196 return icu::number::Notation::simple();
197 case Notation::SCIENTIFIC:
198 return icu::number::Notation::scientific();
199 case Notation::ENGINEERING:
200 return icu::number::Notation::engineering();
202 case Notation::COMPACT:
205 return icu::number::Notation::compactShort();
208 return icu::number::Notation::compactLong();
497 // Parse Notation from skeleton.
498 Notation NotationFromSkeleton(const icu::UnicodeString& skeleton) {
502 return Notation::SCIENTIFIC;
507 return Notation::ENGINEERING;
513 return Notation::COMPACT;
517 return Notation::STANDARD;
520 Handle<String> NotationAsString(Isolate* isolate, Notation notation) {
522 case Notation::SCIENTIFIC:
524 case Notation::ENGINEERING:
526 case Notation::COMPACT:
528 case Notation::STANDARD:
948 // [[Notation]] "notation"
1049 Notation notation = NotationFromSkeleton(skeleton);
1055 if (notation == Notation::COMPACT) {
1416 Notation notation = Notation::STANDARD;
1419 Maybe<Notation> maybe_notation = GetStringOption<Notation>(
1422 {Notation::STANDARD, Notation::SCIENTIFIC, Notation::ENGINEERING,
1423 Notation::COMPACT},
1424 Notation::STANDARD);
1426 // 19. Set numberFormat.[[Notation]] to notation.
1434 notation == Notation::COMPACT);
1498 if (notation != Notation::STANDARD) {
1520 if (notation == Notation::COMPACT) {