Home
last modified time | relevance | path

Searched refs:number_format (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Di18n.cc245 icu::DecimalFormat* number_format = NULL; in CreateICUNumberFormat() local
274 number_format = static_cast<icu::DecimalFormat*>( in CreateICUNumberFormat()
278 delete number_format; in CreateICUNumberFormat()
286 number_format->setMinimumFractionDigits(fraction_digits); in CreateICUNumberFormat()
287 number_format->setMaximumFractionDigits(fraction_digits); in CreateICUNumberFormat()
290 number_format->setMinimumFractionDigits(0); in CreateICUNumberFormat()
291 number_format->setMaximumFractionDigits(3); in CreateICUNumberFormat()
294 number_format = static_cast<icu::DecimalFormat*>( in CreateICUNumberFormat()
297 delete number_format; in CreateICUNumberFormat()
301 number_format->setMinimumFractionDigits(1); in CreateICUNumberFormat()
[all …]
/external/v8/src/runtime/
Druntime-i18n.cc420 icu::DecimalFormat* number_format = in RUNTIME_FUNCTION() local
423 if (!number_format) return isolate->ThrowIllegalOperation(); in RUNTIME_FUNCTION()
425 local_object->SetInternalField(0, reinterpret_cast<Smi*>(number_format)); in RUNTIME_FUNCTION()
451 icu::DecimalFormat* number_format = in RUNTIME_FUNCTION() local
453 if (!number_format) return isolate->ThrowIllegalOperation(); in RUNTIME_FUNCTION()
456 number_format->format(value->Number(), result); in RUNTIME_FUNCTION()
480 icu::DecimalFormat* number_format = in RUNTIME_FUNCTION() local
482 if (!number_format) return isolate->ThrowIllegalOperation(); in RUNTIME_FUNCTION()
492 number_format->parse(u_number, result, status); in RUNTIME_FUNCTION()
/external/google-breakpad/src/processor/
Dminidump.cc358 NumberFormat number_format, in PrintValueOrInvalid() argument
362 } else if (number_format == kNumberFormatDecimal) { in PrintValueOrInvalid()