HomeSort by relevance Sort by last modified time
    Searched defs:number_format (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
i18n.cc 248 icu::DecimalFormat* number_format = NULL; local
277 number_format = static_cast<icu::DecimalFormat*>(
281 delete number_format;
289 number_format->setMinimumFractionDigits(fraction_digits);
290 number_format->setMaximumFractionDigits(fraction_digits);
293 number_format->setMinimumFractionDigits(0);
294 number_format->setMaximumFractionDigits(3);
297 number_format = static_cast<icu::DecimalFormat*>(
300 delete number_format;
304 number_format->setMinimumFractionDigits(1)
797 icu::DecimalFormat* number_format = local
    [all...]
  /external/v8/src/runtime/
runtime-i18n.cc 435 icu::DecimalFormat* number_format = local
438 if (!number_format) return isolate->ThrowIllegalOperation();
440 local_object->SetInternalField(0, reinterpret_cast<Smi*>(number_format));
466 icu::DecimalFormat* number_format = local
468 if (!number_format) return isolate->ThrowIllegalOperation();
471 number_format->format(value->Number(), result);
492 icu::DecimalFormat* number_format = local
494 if (!number_format) return isolate->ThrowIllegalOperation();
504 number_format->parse(u_number, result, status);
    [all...]

Completed in 904 milliseconds