/PHP-5.3/ext/intl/doc/ |
H A D | datefmt_api.php | 273 function datefmt_format($fmt , $value) {} argument 289 function datefmt_parse($fmt , $value, $parse_pos=0) {} argument 313 function datefmt_get_datetype($fmt ) {} argument 321 function datefmt_get_timetype($fmt) {} argument 330 function datefmt_is_lenient($fmt) {} argument 345 function datefmt_set_lenient($fmt , $lenient) {} argument 365 function datefmt_get_timezone_id($fmt) {} argument 398 function datefmt_get_calendar($fmt) {} argument 406 function datefmt_get_pattern($fmt) {} argument 427 function datefmt_get_error_code($fmt) {} argument [all …]
|
H A D | msgfmt_api.php | 125 * @param MessageFormatter $fmt The message formatter 129 function msgfmt_format($fmt, $args) {} argument 137 * @param MessageFormatter $fmt The message formatter 142 function msgfmt_parse($fmt, $value) {} argument 171 * @param MessageFormatter $fmt The message formatter 174 function msgfmt_get_pattern($fmt) {} argument 179 * @param MessageFormatter $fmt The message formatter 183 function msgfmt_set_pattern($fmt, $pattern) {} argument 190 * @param MessageFormatter $fmt The message formatter 193 function msgfmt_get_error_code($fmt) {} argument [all …]
|
/PHP-5.3/ext/intl/tests/ |
H A D | ut_common.inc | 191 return $GLOBALS['oo-mode'] ? $fmt->getPattern() : numfmt_get_pattern( $fmt ); 199 return $GLOBALS['oo-mode'] ? $fmt->getErrorCode() : numfmt_get_error_code( $fmt ); 297 return $GLOBALS['oo-mode'] ? $fmt->format( $args ) : msgfmt_format( $fmt, $args); 301 return $GLOBALS['oo-mode'] ? $fmt->parse( $string) : msgfmt_parse( $fmt, $string); 317 return $GLOBALS['oo-mode'] ? $fmt->getPattern() : msgfmt_get_pattern( $fmt ); 321 return $GLOBALS['oo-mode'] ? $fmt->getLocale( ) : msgfmt_get_locale( $fmt ); 338 return $GLOBALS['oo-mode'] ? $fmt->getDateType( ) : datefmt_get_datetype( $fmt ); 342 return $GLOBALS['oo-mode'] ? $fmt->getTimeType( ) : datefmt_get_timetype( $fmt ); 346 return $GLOBALS['oo-mode'] ? $fmt->getCalendar( ) : datefmt_get_calendar( $fmt ); 362 return $GLOBALS['oo-mode'] ? $fmt->getPattern() : datefmt_get_pattern( $fmt ); [all …]
|
H A D | formatter_get_set_pattern.phpt | 17 $fmt = ut_nfmt_create( "en_US", NumberFormatter::PATTERN_DECIMAL ); 20 $res_str .= "Default pattern: '" . ut_nfmt_get_pattern( $fmt ) . "'\n"; 21 $res_str .= "Formatting result: " . ut_nfmt_format( $fmt, $test_value ) . "\n"; 24 $res = ut_nfmt_set_pattern( $fmt, "0.0" ); 26 … $res_str .= ut_nfmt_get_error_message( $fmt ) . " (" . ut_nfmt_get_error_code( $fmt ) . ")\n"; 29 $res = ut_nfmt_get_pattern( $fmt ); 31 … $res_str .= ut_nfmt_get_error_message( $fmt ) . " (" . ut_nfmt_get_error_code( $fmt ) . ")\n"; 32 $res_str .= "New pattern: '" . ut_nfmt_get_pattern( $fmt ) . "'\n"; 33 $res_str .= "Formatted number: " . ut_nfmt_format( $fmt, $test_value ) . "\n"; 35 ut_nfmt_set_pattern($fmt, str_repeat('@', 200)); [all …]
|
H A D | msgfmt_get_set_pattern.phpt | 16 $fmt = ut_msgfmt_create( "en_US", "{0,number} monkeys on {1,number} trees" ); 19 $res_str .= "Default pattern: '" . ut_msgfmt_get_pattern( $fmt ) . "'\n"; 20 $res_str .= "Formatting result: " . ut_msgfmt_format( $fmt, array(123, 456) ) . "\n"; 24 $res = ut_msgfmt_set_pattern( $fmt, $pattern ); 26 … $res_str .= ut_msgfmt_get_error_message( $fmt ) . " (" . ut_msgfmt_get_error_code( $fmt ) . ")\n"; 29 $res = ut_msgfmt_get_pattern( $fmt ); 31 … $res_str .= ut_msgfmt_get_error_message( $fmt ) . " (" . ut_msgfmt_get_error_code( $fmt ) . ")\n"; 32 $res_str .= "New pattern: '" . ut_msgfmt_get_pattern( $fmt ) . "'\n"; 33 $res_str .= "Formatted message: " . ut_msgfmt_format( $fmt, array(123, 456) ) . "\n"; 35 ut_msgfmt_set_pattern($fmt, str_repeat($pattern, 10)); [all …]
|
H A D | formatter_clone.phpt | 14 $fmt = new NumberFormatter( "en_US", NumberFormatter::PATTERN_DECIMAL ); 15 $res_str .= "Formatted number: " . ut_nfmt_format( $fmt, $test_value ) . "\n"; 16 $fmt_clone = clone $fmt; 18 $res = $fmt->setPattern("0.0" ); 20 $res_str .= ut_nfmt_get_error_message( $fmt ) . " (" . ut_nfmt_get_error_code( $fmt ) . ")\n"; 22 $res_str .= "Formatted number: " . ut_nfmt_format( $fmt, $test_value ) . "\n";
|
H A D | msgfmt_fail2.phpt | 9 function err($fmt) { 10 if(!$fmt) { 39 err($fmt); 41 err($fmt); 43 err($fmt); 45 err($fmt); 47 err($fmt); 49 err($fmt); 53 err($fmt); 55 err($fmt); [all …]
|
H A D | msgfmt_fail.phpt | 9 function err($fmt) { 10 if(!$fmt) { 39 err($fmt); 41 err($fmt); 43 err($fmt); 45 err($fmt); 47 err($fmt); 49 err($fmt); 53 err($fmt); 55 err($fmt); [all …]
|
H A D | formatter_fail.phpt | 8 function err($fmt) { 9 if(!$fmt) { 36 $fmt = new NumberFormatter(); 37 err($fmt); 38 $fmt = numfmt_create(); 39 err($fmt); 40 $fmt = NumberFormatter::create(); 41 err($fmt); 45 err($fmt); 47 err($fmt); [all …]
|
H A D | formatter_parse.phpt | 18 $fmt = ut_nfmt_create( "en_US", NumberFormatter::DECIMAL ); 19 $res_str .= ut_nfmt_parse( $fmt, "123E-3" ) . "\n"; 22 $fmt = ut_nfmt_create( "en_US", NumberFormatter::DECIMAL ); 23 $res_str .= ut_nfmt_parse( $fmt, "1.23", NumberFormatter::TYPE_INT32 ) . "\n"; 26 $fmt = ut_nfmt_create( "en_US", NumberFormatter::DECIMAL ); 28 $res_str .= ut_nfmt_parse( $fmt, "0.123 here", NumberFormatter::TYPE_DOUBLE, $pos ) . "\n";
|
H A D | formatter_get_set_text_attribute.phpt | 31 $fmt = ut_nfmt_create( "en_US", NumberFormatter::DECIMAL ); 39 ut_nfmt_set_attribute( $fmt, NumberFormatter::FORMAT_WIDTH, 21 ); 42 $def_val = ut_nfmt_get_text_attribute( $fmt, $attr ); 44 $res_str .= "get_text_attribute() error: " . ut_nfmt_get_error_message( $fmt ) . "\n"; 50 $res_val = ut_nfmt_set_text_attribute( $fmt, $attr, $new_val ); 52 $res_str .= "set_text_attribute() error: " . ut_nfmt_get_error_message( $fmt ) . "\n"; 55 $new_val_check = ut_nfmt_get_text_attribute( $fmt, $attr ); 64 ut_nfmt_set_text_attribute( $fmt, $attr, $def_val ); 67 ut_nfmt_set_attribute( $fmt, NumberFormatter::FORMAT_WIDTH, 0 ); 71 $fmt = ut_nfmt_create( "uk_UA", NumberFormatter::CURRENCY ); [all …]
|
H A D | msgfmt_clone.phpt | 13 $fmt = ut_msgfmt_create( "en_US", "{0,number} monkeys on {1,number} trees" ); 16 $res_str .= "Formatting result: " . ut_msgfmt_format( $fmt, array(123, 456) ) . "\n"; 17 $fmt_clone = clone $fmt; 20 $res = ut_msgfmt_set_pattern( $fmt, $pattern ); 21 $res_str .= "Formatting result: " . ut_msgfmt_format( $fmt, array(123, 456) ) . "\n";
|
H A D | formatter_get_error.phpt | 15 $fmt = ut_nfmt_create( "en_US", NumberFormatter::CURRENCY ); 18 $num = ut_nfmt_parse_currency( $fmt, '123.45', $currency, $pos ); 20 return $fmt->getErrorMessage() . " (" . $fmt->getErrorCode() . ")\n";
|
H A D | msgfmt_get_error.phpt | 15 $fmt = ut_msgfmt_create( "en_US", "{0, number} monkeys on {1, number} trees" ); 16 $num = ut_msgfmt_format( $fmt, array()); 18 return $fmt->getErrorMessage() . " (" . $fmt->getErrorCode() . ")\n";
|
H A D | formatter_parse_currency.phpt | 16 $fmt = ut_nfmt_create( "en_US", NumberFormatter::CURRENCY ); 19 $num = ut_nfmt_parse_currency( $fmt, '$9,988,776.65', $currency, $pos ); 22 $fmt = ut_nfmt_create( "en_US", NumberFormatter::CURRENCY ); 25 $num = ut_nfmt_parse_currency( $fmt, ' $123.45', $currency, $pos );
|
H A D | bug14562.phpt | 12 $fmt = new NumberFormatter("de", NumberFormatter::DECIMAL ); 13 $numeric = $fmt->parse("1234,56"); 16 $fmt = new NumberFormatter("de", NumberFormatter::DECIMAL ); 17 $numeric = $fmt->parse("1234,56");
|
H A D | dateformat_clone.phpt | 15 $fmt = ut_datefmt_create( "en-US", IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/New_… 17 $formatted = ut_datefmt_format($fmt,0); 20 $fmt_clone = clone $fmt; 21 ut_datefmt_set_pattern( $fmt , 'yyyy-DDD.hh:mm:ss z' ); 23 $formatted = ut_datefmt_format($fmt,0);
|
H A D | dateformat_clone2.phpt | 15 $fmt = ut_datefmt_create( "en-US", IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/New_… 17 $formatted = ut_datefmt_format($fmt,0); 20 $fmt_clone = clone $fmt; 21 ut_datefmt_set_pattern( $fmt , 'yyyy-DDD.hh:mm:ss z' ); 23 $formatted = ut_datefmt_format($fmt,0);
|
H A D | dateformat_is_set_lenient.phpt | 20 …$fmt = ut_datefmt_create( "en-US", IntlDateFormatter::SHORT, IntlDateFormatter::SHORT , 'America/… 23 $resLenient1 = ut_datefmt_is_lenient( $fmt); 40 ut_datefmt_set_lenient( $fmt , $isLenient ); 41 $resLenient = ut_datefmt_is_lenient( $fmt); 59 ut_datefmt_set_lenient( $fmt , $isLenient); 60 $resLenient = ut_datefmt_is_lenient( $fmt);
|
H A D | dateformat_get_set_pattern.phpt | 28 …//$fmt = ut_datefmt_create( "en-US", IntlDateFormatter::SHORT, IntlDateFormatter::SHORT , 'Americ… 29 …$fmt = ut_datefmt_create( "en-US", IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/New… 30 $pattern = ut_datefmt_get_pattern( $fmt); 32 $formatted = ut_datefmt_format($fmt,0); 40 ut_datefmt_set_pattern( $fmt , $pattern_entry ); 41 $pattern = ut_datefmt_get_pattern( $fmt); 43 $formatted = ut_datefmt_format($fmt,0);
|
/PHP-5.3/main/ |
H A D | spprintf.c | 247 fmt++; in xbuf_format_converter() 252 if (isascii((int)*fmt) && !islower((int)*fmt)) { in xbuf_format_converter() 279 fmt++; in xbuf_format_converter() 293 fmt++; in xbuf_format_converter() 317 fmt++; in xbuf_format_converter() 321 fmt++; in xbuf_format_converter() 323 if (*fmt == '6' && *(fmt+1) == '4') { in xbuf_format_converter() 328 if (*fmt == '3' && *(fmt+1) == '2') { in xbuf_format_converter() 340 fmt++; in xbuf_format_converter() 350 fmt++; in xbuf_format_converter() [all …]
|
H A D | snprintf.c | 639 fmt++; in format_converter() 644 if (isascii((int)*fmt) && !islower((int)*fmt)) { in format_converter() 671 fmt++; in format_converter() 685 fmt++; in format_converter() 709 fmt++; in format_converter() 713 fmt++; in format_converter() 715 if (*fmt == '6' && *(fmt+1) == '4') { in format_converter() 720 if (*fmt == '3' && *(fmt+1) == '2') { in format_converter() 732 fmt++; in format_converter() 742 fmt++; in format_converter() [all …]
|
/PHP-5.3/ext/gd/libgd/ |
H A D | gd_gd2.c | 34 #define gd2_compressed(fmt) (((fmt) == GD2_FMT_COMPRESSED) || ((fmt) == GD2_FMT_TRUECOLOR_COMPRESSE… argument 35 #define gd2_truecolor(fmt) (((fmt) == GD2_FMT_TRUECOLOR_RAW) || ((fmt) == GD2_FMT_TRUECOLOR_COMPRES… argument 121 …if ((*fmt != GD2_FMT_RAW) && (*fmt != GD2_FMT_COMPRESSED) && (*fmt != GD2_FMT_TRUECOLOR_RAW) && (*… in _gd2GetHeader() 138 if (gd2_compressed(*fmt)) { in _gd2GetHeader() 174 if (gd2_truecolor(*fmt)) { in _gd2CreateFromFile() 255 int vers, fmt; in gdImageCreateFromGd2Ctx() local 421 int vers, fmt; in gdImageCreateFromGd2PartCtx() local 448 if (gd2_truecolor(fmt)) { in gdImageCreateFromGd2PartCtx() 637 gdPutWord(fmt, out); in _gd2PutHeader() 659 if ((fmt != GD2_FMT_RAW) && (fmt != GD2_FMT_COMPRESSED)) { in _gdImageGd2() [all …]
|
H A D | pngtogd2.c | 16 int cs, fmt; in main() local 46 fmt = atoi (argv[4]); in main() 47 gdImageGd2 (im, out, cs, fmt); in main()
|
/PHP-5.3/ext/intl/msgformat/ |
H A D | msgformat_helpers.h | 20 int32_t umsg_format_arg_count(UMessageFormat *fmt); 21 void umsg_format_helper(UMessageFormat *fmt, int arg_count, zval **args, 23 void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args,
|