Home | History | Annotate | Download | only in src

Lines Matching defs:currency

277   icu::UnicodeString currency;
279 if (style == UNICODE_STRING_SIMPLE("currency")) {
281 ExtractStringSetting(isolate, options, "currency", &currency);
328 if (!currency.isEmpty()) {
329 number_format->setCurrency(currency.getBuffer(), status);
391 // Set resolved currency code in options.currency if not empty.
392 icu::UnicodeString currency(number_format->getCurrency());
393 if (!currency.isEmpty()) {
396 isolate->factory()->NewStringFromAscii(CStrVector("currency")),
399 reinterpret_cast<const uint16_t*>(currency.getBuffer()),
400 currency.length())),