/PHP-7.2/ext/intl/formatter/ |
H A D | formatter_format.c | 39 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.2/ext/intl/tests/ |
H A D | formatter_get_set_symbol.phpt | 94 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 D | formatter_get_set_symbol2.phpt | 95 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 D | dateformat_clone.phpt | 17 $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 D | dateformat_clone2.phpt | 17 $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 D | dateformat_set_timezone_id.phpt | 38 $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 D | dateformat_get_set_pattern.phpt | 31 $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 D | dateformat_get_set_pattern2.phpt | 31 $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 D | dateformat_set_timezone_id2.phpt | 44 $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 D | dateformat_set_timezone_id3.phpt | 43 $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";
|
/PHP-7.2/ext/intl/msgformat/ |
H A D | msgformat_format.c | 38 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 D | msgformat_helpers.h | 22 UChar **formatted, int *formatted_len);
|
/PHP-7.2/ext/intl/dateformat/ |
H A D | dateformat_format.c | 38 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.2/ext/date/tests/ |
H A D | test-parse-from-format.phpt | 13 $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.2/ext/imap/tests/ |
H A D | bug75774.phpt | 21 Warning: imap_append(): internal date not correctly formatted in %s on line %d
|
/PHP-7.2/ext/standard/tests/strings/ |
H A D | vsprintf_basic8.phpt | 6 * Description: Return a formatted string
|
H A D | vprintf_basic8.phpt | 6 * Description: Output a formatted string
|
H A D | vsprintf_basic2.phpt | 6 * Description: Return a formatted string
|
H A D | vsprintf_basic4.phpt | 6 * Description: Return a formatted string
|
H A D | vsprintf_basic5.phpt | 6 * Description: Return a formatted string
|
H A D | vsprintf_basic6.phpt | 6 * Description: Return a formatted string
|
H A D | vprintf_basic2.phpt | 6 * Description: Output a formatted string
|
H A D | vprintf_basic4.phpt | 6 * Description: Output a formatted string
|
H A D | vprintf_basic5.phpt | 6 * Description: Output a formatted string
|
/PHP-7.2/ext/phar/tests/ |
H A D | bug77586.phpt | 2 Bug #77586 Symbolic link names in tar-formatted phar must be less than 100 bytes.
|