Searched refs:formatted_len (Results 1 – 4 of 4) sorted by relevance
/PHP-7.0/ext/intl/formatter/ |
H A D | formatter_format.c | 39 int32_t formatted_len = USIZE(format_buf); in PHP_FUNCTION() local 78 formatted, formatted_len, NULL, &INTL_DATA_ERROR_CODE(nfo)); in PHP_FUNCTION() 81 formatted = eumalloc(formatted_len); in PHP_FUNCTION() 94 …formatted_len = unum_formatInt64(FORMATTER_OBJECT(nfo), value, formatted, formatted_len, NULL, &IN… in PHP_FUNCTION() 97 formatted = eumalloc(formatted_len); in PHP_FUNCTION() 98 …formatted_len = unum_formatInt64(FORMATTER_OBJECT(nfo), value, formatted, formatted_len, NULL, &IN… in PHP_FUNCTION() 109 …formatted_len = unum_formatDouble(FORMATTER_OBJECT(nfo), Z_DVAL_P(number), formatted, formatted_le… in PHP_FUNCTION() 112 formatted = eumalloc(formatted_len); in PHP_FUNCTION() 141 int32_t formatted_len = USIZE(format_buf); in PHP_FUNCTION() local 166 …formatted_len = unum_formatDoubleCurrency(FORMATTER_OBJECT(nfo), number, scurrency, formatted, for… in PHP_FUNCTION() [all …]
|
/PHP-7.0/ext/intl/msgformat/ |
H A D | msgformat_format.c | 39 int32_t formatted_len = 0; in msgfmt_do_format() local 48 umsg_format_helper(mfo, args_copy, &formatted, &formatted_len); in msgfmt_do_format() 59 INTL_METHOD_RETVAL_UTF8(mfo, formatted, formatted_len, 1); in msgfmt_do_format()
|
H A D | msgformat_helpers.h | 22 UChar **formatted, int *formatted_len);
|
H A D | msgformat_helpers.cpp | 370 int32_t *formatted_len) in umsg_format_helper() argument 623 *formatted_len = resultStr.length(); in umsg_format_helper() 624 *formatted = eumalloc(*formatted_len+1); in umsg_format_helper() 625 resultStr.extract(*formatted, *formatted_len+1, err.code); in umsg_format_helper()
|
Completed in 11 milliseconds