Home
last modified time | relevance | path

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

12345678910

/PHP-7.1/ext/intl/formatter/
H A Dformatter_format.c39 UChar* formatted = format_buf; in PHP_FUNCTION() local
82 formatted = eumalloc(formatted_len); in PHP_FUNCTION()
86 efree(formatted); in PHP_FUNCTION()
101 efree(formatted); in PHP_FUNCTION()
116 efree(formatted); in PHP_FUNCTION()
128 INTL_METHOD_RETVAL_UTF8( nfo, formatted, formatted_len, ( formatted != format_buf ) ); in PHP_FUNCTION()
141 UChar* formatted = format_buf; in PHP_FUNCTION() local
175 formatted = eumalloc(formatted_len); in PHP_FUNCTION()
183 if (formatted != format_buf) { in PHP_FUNCTION()
184 efree(formatted); in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/intl/tests/
H A Dformatter_get_set_symbol.phpt94 A number formatted with the new symbol: 12,345_._123
99 A number formatted with the new symbol: 12_,_345.123
104 A number formatted with the new symbol: 12,345.123
114 A number formatted with the new symbol: `a,bcd.`ab
119 A number formatted with the new symbol: 12,345.123
139 A number formatted with the new symbol: $12,345.12
154 A number formatted with the new symbol: 12,345.123
159 A number formatted with the new symbol: 12,345.123
164 A number formatted with the new symbol: 12,345.123
169 A number formatted with the new symbol: 12,345.123
[all …]
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_clone.phpt17 $formatted = ut_datefmt_format($fmt,0);
18 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
23 $formatted = ut_datefmt_format($fmt,0);
24 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
25 $formatted = ut_datefmt_format($fmt_clone,0);
26 $res_str .= "\nResult of clone formatting timestamp=0 is : \n$formatted";
H A Ddateformat_clone2.phpt17 $formatted = ut_datefmt_format($fmt,0);
18 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
23 $formatted = ut_datefmt_format($fmt,0);
24 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
25 $formatted = ut_datefmt_format($fmt_clone,0);
26 $res_str .= "\nResult of clone formatting timestamp=0 is : \n$formatted";
H A Ddateformat_set_timezone_id.phpt38 $formatted = ut_datefmt_format( $fmt, 0);
39 $res_str .= "\nFormatting timestamp=0 resulted in $formatted";
40 $formatted = ut_datefmt_format( $fmt, 3600);
41 $res_str .= "\nFormatting timestamp=3600 resulted in $formatted";
H A Ddateformat_set_timezone_id2.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_id3.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_get_set_pattern.phpt31 $formatted = ut_datefmt_format($fmt,0);
32 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
42 $formatted = ut_datefmt_format($fmt,0);
43 … $res_str .= "\nResult of formatting timestamp=0 with the new pattern is : \n$formatted";
H A Ddateformat_get_set_pattern2.phpt31 $formatted = ut_datefmt_format($fmt,0);
32 $res_str .= "\nResult of formatting timestamp=0 is : \n$formatted";
42 $formatted = ut_datefmt_format($fmt,0);
43 … $res_str .= "\nResult of formatting timestamp=0 with the new pattern is : \n$formatted";
/PHP-7.1/ext/intl/msgformat/
H A Dmsgformat_format.c38 UChar* formatted = NULL; in msgfmt_do_format() local
48 umsg_format_helper(mfo, args_copy, &formatted, &formatted_len); in msgfmt_do_format()
54 if (formatted) { in msgfmt_do_format()
55 efree(formatted); in msgfmt_do_format()
59 INTL_METHOD_RETVAL_UTF8(mfo, formatted, formatted_len, 1); in msgfmt_do_format()
H A Dmsgformat_helpers.h22 UChar **formatted, int *formatted_len);
/PHP-7.1/ext/intl/dateformat/
H A Ddateformat_format.c38 UChar* formatted = NULL; in internal_format() local
45 formatted=(UChar*)emalloc(sizeof(UChar) * resultlengthneeded); in internal_format()
46 …udat_format( DATE_FORMAT_OBJECT(dfo), timestamp, formatted, resultlengthneeded, NULL, &INTL_DATA_E… in internal_format()
49 if (formatted && U_FAILURE( INTL_DATA_ERROR_CODE(dfo) ) ) { in internal_format()
50 efree(formatted); in internal_format()
54 INTL_METHOD_RETVAL_UTF8( dfo, formatted, resultlengthneeded, 1 ); in internal_format()
/PHP-7.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-7.1/ext/imap/tests/
H A Dbug75774.phpt21 Warning: imap_append(): internal date not correctly formatted in %s on line %d
/PHP-7.1/ext/standard/tests/strings/
H A Dvsprintf_basic8.phpt6 * Description: Return a formatted string
H A Dvprintf_basic8.phpt6 * Description: Output a formatted string
H A Dvsprintf_basic2.phpt6 * Description: Return a formatted string
H A Dvsprintf_basic4.phpt6 * Description: Return a formatted string
H A Dvsprintf_basic5.phpt6 * Description: Return a formatted string
H A Dvsprintf_basic6.phpt6 * Description: Return a formatted string
H A Dvprintf_basic2.phpt6 * Description: Output a formatted string
H A Dvprintf_basic4.phpt6 * Description: Output a formatted string
H A Dvprintf_basic5.phpt6 * Description: Output a formatted string
/PHP-7.1/ext/phar/tests/
H A Dbug77586.phpt2 Bug #77586 Symbolic link names in tar-formatted phar must be less than 100 bytes.

Completed in 61 milliseconds

12345678910