Lines Matching refs:notation
70 // in scientific notation, scaled to the nearest thousand with the power of
71 // ten in scientific notation, or scaled to the nearest locale-dependent
72 // compact decimal notation power of ten with the corresponding compact
73 // decimal notation affix.
83 // specifying whether to display compact notation affixes in short form ("5K")
84 // or long form ("5 thousand") if formatting with the "compact" notation. It
192 icu::number::Notation ToICUNotation(Notation notation,
194 switch (notation) {
201 // 29. If notation is "compact", then
520 Handle<String> NotationAsString(Isolate* isolate, Notation notation) {
521 switch (notation) {
948 // [[Notation]] "notation"
1049 Notation notation = NotationFromSkeleton(skeleton);
1052 NotationAsString(isolate, notation), Just(kDontThrow))
1054 // Only output compactDisplay when notation is compact.
1055 if (notation == Notation::COMPACT) {
1416 Notation notation = Notation::STANDARD;
1417 // 18. Let notation be ? GetOption(options, "notation", "string", «
1420 isolate, options, "notation", service,
1426 // 19. Set numberFormat.[[Notation]] to notation.
1427 notation = maybe_notation.FromJust();
1434 notation == Notation::COMPACT);
1496 // The default notation in ICU is Simple, which mapped from STANDARD
1498 if (notation != Notation::STANDARD) {
1499 settings = settings.notation(ToICUNotation(notation, compact_display));
1519 // 29. If notation is "compact", then
1520 if (notation == Notation::COMPACT) {