Home
last modified time | relevance | path

Searched defs:fmt (Results 1 – 25 of 27) sorted by relevance

12

/PHP-7.2/ext/intl/doc/
H A Ddatefmt_api.php273 function datefmt_format($fmt , $value) {}
289 function datefmt_parse($fmt , $value, $parse_pos=0) {}
313 function datefmt_get_datetype($fmt ) {}
321 function datefmt_get_timetype($fmt) {}
330 function datefmt_is_lenient($fmt) {}
345 function datefmt_set_lenient($fmt , $lenient) {}
365 function datefmt_get_timezone_id($fmt) {}
386 function datefmt_get_calendar($fmt) {}
394 function datefmt_get_pattern($fmt) {}
415 function datefmt_get_error_code($fmt) {}
[all …]
H A Dmsgfmt_api.php129 function msgfmt_format($fmt, $args) {}
142 function msgfmt_parse($fmt, $value) {}
174 function msgfmt_get_pattern($fmt) {}
183 function msgfmt_set_pattern($fmt, $pattern) {}
193 function msgfmt_get_error_code($fmt) {}
200 function msgfmt_get_error_message($fmt) {}
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_out.h47 #define phpdbg_script(type, fmt, ...) phpdbg_print(type , PHPDBG_G(io)[PH… argument
48 #define phpdbg_log(fmt, ...) phpdbg_log_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__) argument
49 #define phpdbg_xml(fmt, ...) phpdbg_xml_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__) argument
50 #define phpdbg_out(fmt, ...) phpdbg_out_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__) argument
56 #define phpdbg_script_ex(out, type, fmt, ...) phpdbg_print(type , out, NULL, NULL… argument
57 #define phpdbg_log_ex(out, fmt, ...) phpdbg_log_internal(out, fmt, ##__VA_ARGS__) argument
58 #define phpdbg_xml_ex(out, fmt, ...) phpdbg_xml_internal(out, fmt, ##__VA_ARGS__) argument
59 #define phpdbg_out_ex(out, fmt, ...) phpdbg_out_internal(out, fmt, ##__VA_ARGS__) argument
61 #define phpdbg_rlog(fd, fmt, ...) phpdbg_rlog_internal(fd, fmt, ##__VA_ARGS__) argument
71 # define phpdbg_debug(fmt, ...) phpdbg_log_ex(PHPDBG_G(io)[PHPDBG_STDERR].fd, fmt, ##__VA_ARGS__) argument
[all …]
H A Dphpdbg_out.c132 static int format_converter(register buffy *odp, const char *fmt, zend_bool escape_xml, va_list ap)… in format_converter()
1202 PHPDBG_API int phpdbg_xml_internal(int fd, const char *fmt, ...) { in phpdbg_xml_internal()
1232 PHPDBG_API int phpdbg_log_internal(int fd, const char *fmt, ...) { in phpdbg_log_internal()
1248 PHPDBG_API int phpdbg_out_internal(int fd, const char *fmt, ...) { in phpdbg_out_internal()
1288 PHPDBG_API int phpdbg_rlog_internal(int fd, const char *fmt, ...) { /* {{{ */ in phpdbg_rlog_internal()
/PHP-7.2/ext/gd/libgd/
H A Dgd_gd2.c35 #define gd2_compressed(fmt) (((fmt) == GD2_FMT_COMPRESSED) || ((fmt) == GD2_FMT_TRUECOLOR_COMPRESSE… argument
36 #define gd2_truecolor(fmt) (((fmt) == GD2_FMT_TRUECOLOR_RAW) || ((fmt) == GD2_FMT_TRUECOLOR_COMPRES… argument
55 static int _gd2GetHeader(gdIOCtxPtr in, int *sx, int *sy, int *cs, int *vers, int *fmt, int *ncx, i… in _gd2GetHeader()
183 static gdImagePtr _gd2CreateFromFile (gdIOCtxPtr in, int *sx, int *sy, int *cs, int *vers, int *fmt in _gd2CreateFromFile()
273 int vers, fmt; in gdImageCreateFromGd2Ctx() local
443 int vers, fmt; in gdImageCreateFromGd2PartCtx() local
644 static void _gd2PutHeader (gdImagePtr im, gdIOCtx * out, int cs, int fmt, int cx, int cy) in _gd2PutHeader()
664 static void _gdImageGd2 (gdImagePtr im, gdIOCtx * out, int cs, int fmt) in _gdImageGd2()
832 void gdImageGd2 (gdImagePtr im, FILE * outFile, int cs, int fmt) in gdImageGd2()
841 void *gdImageGd2Ptr (gdImagePtr im, int cs, int fmt, int *size) in gdImageGd2Ptr()
H A Dpngtogd2.c16 int cs, fmt; in main() local
/PHP-7.2/sapi/fpm/fpm/
H A Dzlog.c101 void vzlog(const char *function, int line, int flags, const char *fmt, va_list args) /* {{{ */ in vzlog()
198 void zlog_ex(const char *function, int line, int flags, const char *fmt, ...) /* {{{ */ { in zlog_ex()
H A Dfpm_main.c462 static void fpm_fcgi_log(int type, const char *fmt, ...) /* {{{ */ in fpm_fcgi_log()
/PHP-7.2/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp81 U_CFUNC int32_t umsg_format_arg_count(UMessageFormat *fmt) in umsg_format_arg_count()
657 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval **args, UChar *source, int32_t… in umsg_parse_helper()
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_alloc.h67 #define mnd_sprintf(p, mx_len, fmt,...) mysqlnd_allocator.m_sprintf((p), (mx_len), (fmt), __VA_ARGS… argument
68 #define mnd_vsprintf(p, mx_len, fmt,ap) mysqlnd_allocator.m_vsprintf((p), (mx_len), (fmt), (ap)) argument
/PHP-7.2/main/streams/
H A Dtransports.c42 #define ERR_REPORT(out_err, fmt, arg) \ argument
46 #define ERR_RETURN(out_err, local_err, fmt) \ argument
H A Dstreams.c233 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options, const char *fmt,… in php_stream_wrapper_log_error()
1215 PHPAPI size_t _php_stream_printf(php_stream *stream, const char *fmt, ...) in _php_stream_printf()
/PHP-7.2/ext/mbstring/oniguruma/src/
H A Dregerror.c324 UChar* pat, UChar* pat_end, const UChar *fmt, ...) in onig_snprintf_with_pattern()
/PHP-7.2/main/
H A Dspprintf.c198 static void xbuf_format_converter(void *xbuf, zend_bool is_char, const char *fmt, va_list ap) /* {{… in xbuf_format_converter()
H A Dphp_ini.c603 const char *fmt = "php-%s.ini"; in php_init_config() local
H A Dsnprintf.c591 static int format_converter(register buffy * odp, const char *fmt, va_list ap) /* {{{ */ in format_converter()
/PHP-7.2/ext/fileinfo/libmagic/
H A Dfuncs.c60 file_printf(struct magic_set *ms, const char *fmt, ...) in file_printf()
H A Dcompress.c492 makeerror(unsigned char **buf, size_t *len, const char *fmt, ...) in makeerror()
/PHP-7.2/ext/interbase/
H A Dphp_ibase_udf.c213 char const *fmt; in call_php() local
/PHP-7.2/ext/pdo_firebird/
H A Dfirebird_statement.c381 char *fmt; in firebird_stmt_get_col() local
/PHP-7.2/ext/sockets/
H A Dconversions.c142 const char *fmt, in do_from_to_zval_err()
181 static void do_from_zval_err(ser_context *ctx, const char *fmt, ...) in do_from_zval_err()
190 static void do_to_zval_err(res_context *ctx, const char *fmt, ...) in do_to_zval_err()
/PHP-7.2/ext/standard/
H A Dformatted_print.c210 int adjust, char fmt, in php_sprintf_appenddouble()
H A Dinfo.c71 static int php_info_printf(const char *fmt, ...) /* {{{ */ in php_info_printf()
/PHP-7.2/ext/com_dotnet/
H A Dcom_wrapper.c72 static inline void trace(char *fmt, ...) in trace()
/PHP-7.2/sapi/litespeed/
H A Dlsapi_main.c565 #define DEBUG_MESSAGE(fmt, ...) argument

Completed in 110 milliseconds

12