Home
last modified time | relevance | path

Searched refs:formatted (Results 1 – 25 of 26) sorted by relevance

12

/PHP-8.1/ext/intl/formatter/
H A Dformatter_format.c33 UChar* formatted = format_buf; in PHP_FUNCTION() local
67 formatted = eumalloc(formatted_len); in PHP_FUNCTION()
71 efree(formatted); in PHP_FUNCTION()
83 formatted = eumalloc(formatted_len); in PHP_FUNCTION()
86 efree(formatted); in PHP_FUNCTION()
101 efree(formatted); in PHP_FUNCTION()
121 INTL_METHOD_RETVAL_UTF8( nfo, formatted, formatted_len, ( formatted != format_buf ) ); in PHP_FUNCTION()
161 formatted = eumalloc(formatted_len); in PHP_FUNCTION()
169 if (formatted != format_buf) { in PHP_FUNCTION()
170 efree(formatted); in PHP_FUNCTION()
[all …]
/PHP-8.1/ext/intl/tests/
H A Ddateformat_clone2.phpt16 $formatted = ut_datefmt_format($fmt,0);
17 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
22 $formatted = ut_datefmt_format($fmt,0);
23 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
24 $formatted = ut_datefmt_format($fmt_clone,0);
25 $res_str .= "\nResult of clone formatting timestamp=0 is : \n$formatted";
H A Dformatter_get_set_symbol2.phpt95 A number formatted with the new symbol: 12,345_._123
100 A number formatted with the new symbol: 12_,_345.123
105 A number formatted with the new symbol: 12,345.123
115 A number formatted with the new symbol: 12,345.123
120 A number formatted with the new symbol: 12,345.123
140 A number formatted with the new symbol: $12,345.12
155 A number formatted with the new symbol: 12,345.123
160 A number formatted with the new symbol: 12,345.123
165 A number formatted with the new symbol: 12,345.123
170 A number formatted with the new symbol: 12,345.123
[all …]
H A Ddateformat_get_set_pattern2.phpt30 $formatted = ut_datefmt_format($fmt,0);
31 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
41 $formatted = ut_datefmt_format($fmt,0);
42 … $res_str .= "\nResult of formatting timestamp=0 with the new pattern is : \n$formatted";
H A Ddateformat_set_timezone_id2.phpt43 $formatted = ut_datefmt_format( $fmt, 0);
44 $res_str .= "\nFormatting timestamp=0 resulted in $formatted";
45 $formatted = ut_datefmt_format( $fmt, 3600);
46 $res_str .= "\nFormatting timestamp=3600 resulted in $formatted";
H A Ddateformat_set_timezone_id3.phpt44 $formatted = ut_datefmt_format( $fmt, 0);
45 $res_str .= "\nFormatting timestamp=0 resulted in $formatted";
46 $formatted = ut_datefmt_format( $fmt, 3600);
47 $res_str .= "\nFormatting timestamp=3600 resulted in $formatted";
H A Ddateformat_set_timezone_id_icu72-1.phpt43 $formatted = ut_datefmt_format( $fmt, 0);
44 $res_str .= "\nFormatting timestamp=0 resulted in $formatted";
45 $formatted = ut_datefmt_format( $fmt, 3600);
46 $res_str .= "\nFormatting timestamp=3600 resulted in $formatted";
H A Ddateformat_format_parse.phpt83 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
84 $res_str .= "\nFormatted timestamp is : $formatted";
85 $parsed = ut_datefmt_parse( $fmt , $formatted);
H A Ddateformat_format_parse_version2.phpt84 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
85 $res_str .= "\nFormatted timestamp is : $formatted";
86 $parsed = ut_datefmt_parse( $fmt , $formatted);
H A Ddateformat_format_parse_version_icu72-1.phpt83 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
84 $res_str .= "\nFormatted timestamp is : $formatted";
85 $parsed = ut_datefmt_parse( $fmt , $formatted);
H A Ddateformat_format.phpt97 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
98 $res_str .= "\nFormatted timestamp is : $formatted";
H A Ddateformat_format_variant2.phpt97 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
98 $res_str .= "\nFormatted timestamp is : $formatted";
H A Ddateformat_format_variant3.phpt99 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
100 $res_str .= "\nFormatted timestamp is : $formatted";
/PHP-8.1/ext/intl/msgformat/
H A Dmsgformat_format.c34 UChar* formatted = NULL; in msgfmt_do_format() local
37 umsg_format_helper(mfo, Z_ARRVAL_P(args), &formatted, &formatted_len); in msgfmt_do_format()
40 if (formatted) { in msgfmt_do_format()
41 efree(formatted); in msgfmt_do_format()
45 INTL_METHOD_RETVAL_UTF8(mfo, formatted, formatted_len, 1); in msgfmt_do_format()
H A Dmsgformat_helpers.h20 UChar **formatted, int *formatted_len);
H A Dmsgformat_helpers.cpp366 UChar **formatted, in umsg_format_helper() argument
610 *formatted = eumalloc(*formatted_len+1); in umsg_format_helper()
611 resultStr.extract(*formatted, *formatted_len+1, err.code); in umsg_format_helper()
/PHP-8.1/ext/intl/dateformat/
H A Ddateformat_format.c33 UChar* formatted = NULL; in internal_format() local
40 formatted=(UChar*)emalloc(sizeof(UChar) * resultlengthneeded); in internal_format()
41 …udat_format( DATE_FORMAT_OBJECT(dfo), timestamp, formatted, resultlengthneeded, NULL, &INTL_DATA_E… in internal_format()
44 if (formatted && U_FAILURE( INTL_DATA_ERROR_CODE(dfo) ) ) { in internal_format()
45 efree(formatted); in internal_format()
49 INTL_METHOD_RETVAL_UTF8( dfo, formatted, resultlengthneeded, 1 ); in internal_format()
/PHP-8.1/ext/date/tests/
H A Dtest-parse-from-format.phpt13 $formatted = $date->format( $format ) ;
14 $date2 = date_create_from_format( $format, $formatted );
15 var_dump( $format, $formatted, $date2 );
19 var_dump(date_parse_from_format( $format, $formatted ) );
/PHP-8.1/ext/phar/tests/
H A Dbug77586.phpt2 Bug #77586 Symbolic link names in tar-formatted phar must be less than 100 bytes.
/PHP-8.1/ext/standard/tests/strings/
H A Dvprintf_variation10.phpt6 * Description: Output a formatted string
/PHP-8.1/sapi/fpm/
H A Dwww.conf.in192 ; By default the status page output is formatted as text/plain. Passing either
284 ; response is formatted as text/plain with a 200 response code.
340 ; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
345 ; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
/PHP-8.1/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc68 * @return the date formatted as a ZIP date
/PHP-8.1/
H A Dphp.ini-development556 ; the error message is formatted as HTML or not.
H A Dphp.ini-production558 ; the error message is formatted as HTML or not.
/PHP-8.1/ext/fileinfo/tests/
H A Dmagic11338 0 string \366\366\366\366 PC formatted floppy with no filesystem
11757 >>>>>180 search/96 Disk\ formatted\ with\ WinImage\ \b, WinImage harddisk Bootloader
15431 # Note that a GPT-formatted disk must contain an MBR as well.
15817 # for common object formatted files
15825 # display name+variables+flags for common object formatted files
16635 >8 string FTXT \b, FTXT formatted text
19484 # use subroutine to display name+flags+variables for common object formatted files
23803 >>0x1E string >0 \b, formatted by %-.66s
28272 # printer: file(1) magic for printer-formatted files
28386 0 string \033[K\002\0\0\017\033(a\001\0\001\033(g Canon Bubble Jet BJC formatted data

Completed in 147 milliseconds

12