Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 25 of 90) sorted by path

1234

/PHP-5.5/
H A DREADME.STREAMS32 const char * fmt, ...);
/PHP-5.5/ext/com_dotnet/
H A Dcom_wrapper.c72 static inline void trace(char *fmt, ...) in trace() argument
80 va_start(ap, fmt); in trace()
81 vsnprintf(buf, sizeof(buf), fmt, ap); in trace()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch1940 -file_vprintf(struct magic_set *ms, const char *fmt, va_list ap)
1941 +file_printf(struct magic_set *ms, const char *fmt, ...)
1948 - len = vasprintf(&buf, fmt, ap);
1951 + va_start(ap, fmt);
1952 + len = vspprintf(&buf, 0, fmt, ap);
1979 -file_printf(struct magic_set *ms, const char *fmt, ...)
1984 - va_start(ap, fmt);
1985 - rv = file_vprintf(ms, fmt, ap);
/PHP-5.5/ext/fileinfo/libmagic/
H A Dfuncs.c59 file_printf(struct magic_set *ms, const char *fmt, ...) in file_printf() argument
65 va_start(ap, fmt); in file_printf()
66 len = vspprintf(&buf, 0, fmt, ap); in file_printf()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic11897 # 123 byte 129 # minimum version that can read fmt
13369 >4 belong 0x06800200 fmt document data
15485 >>40 search/256 fmt\x20\xF3\xAC\xD3\x11\x8C\xD1\x00\xC0\x4F\x8E\xDB\x8A \b
15496 >40 search/256 fmt\x20 \b
/PHP-5.5/ext/gd/libgd/
H A Dgd.h634 void gdImageGd2(gdImagePtr im, FILE *out, int cs, int fmt);
644 void* gdImageGd2Ptr(gdImagePtr im, int cs, int fmt, int *size);
H A Dgd_gd2.c34 #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()
187 if (gd2_truecolor(*fmt)) { in _gd2CreateFromFile()
268 int vers, fmt; in gdImageCreateFromGd2Ctx() local
434 int vers, fmt; in gdImageCreateFromGd2PartCtx() local
461 if (gd2_truecolor(fmt)) { in gdImageCreateFromGd2PartCtx()
650 gdPutWord(fmt, out); in _gd2PutHeader()
672 if ((fmt != GD2_FMT_RAW) && (fmt != GD2_FMT_COMPRESSED)) { in _gdImageGd2()
[all …]
H A Dpngtogd2.c16 int cs, fmt; in main() local
46 fmt = atoi (argv[4]); in main()
47 gdImageGd2 (im, out, cs, fmt); in main()
/PHP-5.5/ext/interbase/
H A Dphp_ibase_udf.c217 char const *fmt; in call_php() local
/PHP-5.5/ext/intl/doc/
H A Ddatefmt_api.php273 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 Dmsgfmt_api.php125 * @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.5/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp79 U_CFUNC int32_t umsg_format_arg_count(UMessageFormat *fmt) in umsg_format_arg_count() argument
82 MessageFormatAdapter::getArgTypeList(*(const MessageFormat*)fmt, fmt_count); in umsg_format_arg_count()
639 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args, UChar *source, int so… in umsg_parse_helper() argument
642 Formattable *fargs = ((const MessageFormat*)fmt)->parse(srcString, *count, *status); in umsg_parse_helper()
H A Dmsgformat_helpers.h20 int32_t umsg_format_arg_count(UMessageFormat *fmt);
23 void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args,
/PHP-5.5/ext/intl/tests/
H A Dbug14562.phpt12 $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 Dbug50590.phpt10 $fmt = new IntlDateFormatter("en_US", IntlDateFormatter::FULL, IntlDateFormatter::FULL);
11 var_dump($fmt->parse("Wednesday, January 20, 2038 3:14:07 AM GMT"));
H A Dbug67052-win32.phpt16 $fmt = new NumberFormatter( 'sl_SI.UTF-8', NumberFormatter::DECIMAL);
18 $res_str = $fmt->parse($num)."\n";
H A Dbug67052.phpt16 $fmt = new NumberFormatter( 'sl_SI.UTF-8', NumberFormatter::DECIMAL);
18 $res_str = $fmt->parse($num)."\n";
H A Ddateformat_clone.phpt15 $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 Ddateformat_clone2.phpt15 $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 Ddateformat_format.phpt95 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
96 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
115 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
116 $formatted1 = ut_datefmt_format( $fmt , $localtime_entry);
133 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
134 $formatted1 = ut_datefmt_format( $fmt , $date_entry);
H A Ddateformat_format_parse.phpt81 $fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry,$timezone);
82 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
84 $parsed = ut_datefmt_parse( $fmt , $formatted);
106 $fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry,$timezone);
107 $formatted1 = ut_datefmt_format( $fmt , $localtime_entry);
114 $parsed_arr = ut_datefmt_localtime( $fmt, $formatted1 );
H A Ddateformat_format_parse_version2.phpt81 $fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry,$timezone);
82 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
84 $parsed = ut_datefmt_parse( $fmt , $formatted);
106 $fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry,$timezone);
107 $formatted1 = ut_datefmt_format( $fmt , $localtime_entry);
114 $parsed_arr = ut_datefmt_localtime( $fmt, $formatted1 );
H A Ddateformat_format_variant2.phpt95 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
96 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
115 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
116 $formatted1 = ut_datefmt_format( $fmt , $localtime_entry);
133 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
134 $formatted1 = ut_datefmt_format( $fmt , $date_entry);
H A Ddateformat_format_variant3.phpt95 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
96 $formatted = ut_datefmt_format( $fmt , $timestamp_entry);
115 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
116 $formatted1 = ut_datefmt_format( $fmt , $localtime_entry);
133 …$fmt = ut_datefmt_create( $locale_entry , $datetype_entry ,$datetype_entry, $timezone, IntlDateFor…
134 $formatted1 = ut_datefmt_format( $fmt , $date_entry);
H A Ddateformat_get_datetype.phpt28 …$fmt = ut_datefmt_create( "de-DE", $datetype_entry , IntlDateFormatter::SHORT,'America/Los_Angele…
29 $date_type = ut_datefmt_get_datetype( $fmt);

Completed in 72 milliseconds

1234