Home
last modified time | relevance | path

Searched refs:format (Results 1 – 25 of 798) sorted by path

12345678910>>...32

/PHP-5.5/
H A DINSTALL1363 If you are using PHP with a web server, the location and format of the
H A DNEWS3853 format). (Derick)
4159 . Fixed bug #54121 (error message format string typo). (Ilia)
4268 . Added xml format to the status page. (fat)
4459 . Fixed bug #53541 (format string bug in ext/phar).
4467 . Fixed bug #53777 (php-fpm log format now match php_error log format). (fat)
5314 format character). (Ilia)
6005 - Added icon format support to getimagesize(). (Scott)
7191 - Added missing format validator to unpack() function. (Ilia)
8640 - Added support for exif date format in strtotime(). (Derick)
8760 - Fixed bug #36599 (DATE_W3C format constant incorrect). (Derick)
[all …]
H A DREADME.GIT-RULES98 The format of the commit messages is pretty simple.
H A DREADME.STREAMS59 REPORT_ERRORS - show errors in a standard format if something
353 /* we could do something strange, like format the data as XML here,
H A DREADME.TESTING161 script with following format. Please test the script and make sure
H A DUPGRADING119 line with Perl's behavior: - Implemented format character "Z": NULL
120 padded string, with trailing NULL bytes removed. - Changed format
122 Changed format character "A": all trailing ASCII whitespace is now
125 - MessageFormatter::format() and related functions now accepted named
128 - MessageFormatter::format() and related functions now don't error out
132 - MessageFormatter::parse() and MessageFormat::format() (and their
168 - IntlDateFormatter::format() and datefmt_format() now also accept an
217 The reason for that is that O: format is meant to be used with classes
230 We are aware that some applications use O: format as a way to
H A Dconfigure.in63 int zend_sprintf(char *buffer, const char *format, ...);
/PHP-5.5/TSRM/
H A DTSRM.c58 int tsrm_error(int level, const char *format, ...);
754 int tsrm_error(int level, const char *format, ...) in tsrm_error() argument
761 va_start(args, format); in tsrm_error()
762 size = vfprintf(tsrm_error_file, format, args); in tsrm_error()
H A DTSRM.h136 TSRM_API int tsrm_error(int level, const char *format, ...);
/PHP-5.5/Zend/
H A Dconfigure.in58 int zend_sprintf(char *buffer, const char *format, ...);
H A Dzend.c48 ZEND_API int (*zend_printf)(const char *format, ...);
1017 ZEND_API void zend_error(int type, const char *format, ...) /* {{{ */ in zend_error() argument
1105 va_start(args, format); in zend_error()
1106 zend_vspprintf(&dtrace_error_buffer, 0, format, args); in zend_error()
1113 va_start(args, format); in zend_error()
1119 zend_error_cb(type, error_filename, error_lineno, format, args); in zend_error()
1128 zend_error_cb(type, error_filename, error_lineno, format, args); in zend_error()
1218 zend_error_cb(type, error_filename, error_lineno, format, args); in zend_error()
1274 va_start(args, format); in zend_output_debug_string()
1279 vsnprintf(output_buf, 1024, format, args); in zend_output_debug_string()
[all …]
H A Dzend.h163 # define ZEND_ATTRIBUTE_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
169 # define ZEND_ATTRIBUTE_PTR_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
294 void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((noreturn));
543 …t type, const char *error_filename, const uint error_lineno, const char *format, va_list args) ZEN…
544 int (*printf_function)(const char *format, ...) ZEND_ATTRIBUTE_PTR_FORMAT(printf, 1, 2);
554 int (*vspprintf_function)(char **pbuf, size_t max_len, const char *format, va_list ap);
651 ZEND_API void zend_output_debug_string(zend_bool trigger_break, const char *format, ...) ZEND_ATTRI…
689 extern ZEND_API int (*zend_printf)(const char *format, ...) ZEND_ATTRIBUTE_PTR_FORMAT(printf, 1, 2);
695 …t type, const char *error_filename, const uint error_lineno, const char *format, va_list args) ZEN…
698 extern int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap);
[all …]
H A Dzend_alloc.c63 void zend_debug_alloc_output(char *format, ...) in zend_debug_alloc_output() argument
68 va_start(args, format); in zend_debug_alloc_output()
69 vsprintf(output_buf, format, args); in zend_debug_alloc_output()
1744 const char *format, in zend_mm_safe_error() argument
1776 format, in zend_mm_safe_error()
1787 format, in zend_mm_safe_error()
H A Dzend_alloc.h151 void zend_debug_alloc_output(char *format, ...);
H A Dzend_exceptions.c649 int zend_spprintf(char **message, int max_len, const char *format, ...) /* {{{ */ in zend_spprintf() argument
654 va_start(arg, format); in zend_spprintf()
655 len = zend_vspprintf(message, max_len, format, arg); in zend_spprintf()
851 …xception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, const char *format, ...) /* {{{ */ in zend_throw_exception_ex() argument
857 va_start(arg, format); in zend_throw_exception_ex()
858 zend_vspprintf(&message, 0, format, arg); in zend_throw_exception_ex()
874 static void zend_error_va(int type, const char *file, uint lineno, const char *format, ...) /* {{{ … in zend_error_va() argument
878 va_start(args, format); in zend_error_va()
879 zend_error_cb(type, file, lineno, format, args); in zend_error_va()
H A Dzend_exceptions.h44 …d_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, const char *format, ...);
56 int zend_spprintf(char **message, int max_len, const char *format, ...);
H A Dzend_sprintf.c31 int zend_sprintf(char *buffer, const char *format, ...) in zend_sprintf() argument
35 va_start(args, format); in zend_sprintf()
36 vsprintf(buffer, format, args); in zend_sprintf()
/PHP-5.5/Zend/tests/generators/errors/
H A Dserialize_unserialize_error.phpt36 Warning: Erroneous data format for unserializing 'Generator' in %sserialize_unserialize_error.php o…
/PHP-5.5/build/
H A Dlibtool.m41490 # It is most probably a Windows format PATH printed by
2420 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
/PHP-5.5/ext/date/
H A DTODO1 - Port over my 200 test cases to .phpt format.
H A Dphp_date.c62 ZEND_ARG_INFO(0, format)
67 ZEND_ARG_INFO(0, format)
72 ZEND_ARG_INFO(0, format)
108 ZEND_ARG_INFO(0, format)
113 ZEND_ARG_INFO(0, format)
138 ZEND_ARG_INFO(0, format)
147 ZEND_ARG_INFO(0, format)
1219 char *format; in php_date() local
1308 switch (format) { in php_idate()
1378 char *format; in PHP_FUNCTION() local
[all …]
H A Dphp_date.h183 PHPAPI int php_idate(char format, time_t ts, int localtime TSRMLS_DC);
188 PHPAPI char *php_format_date(char *format, int format_len, time_t ts, int localtime TSRMLS_DC);
201 …php_date_obj *dateobj, /*const*/ char *time_str, int time_str_len, char *format, zval *timezone_ob…
/PHP-5.5/ext/date/lib/
H A Dparse_date.c24826 timelib_time *timelib_parse_from_format(char *format, char *string, int len, timelib_error_containe… in timelib_parse_from_format() argument
24828 char *fptr = format; in timelib_parse_from_format()
H A Dparse_date.re916 /* Timestamp format: @1126396800 */
1582 /* to handle the format weekday + last/this/next week */
1835 timelib_time *timelib_parse_from_format(char *format, char *string, int len, timelib_error_containe…
1837 char *fptr = format;
1866 /* Loop over the format string */
2093 case '+': /* allow extra chars in the format */
2099 add_pbf_error(s, "The format separator does not match", string, begin);
H A Dtimelib.h75 timelib_time *timelib_parse_from_format(char *format, char *s, int len, timelib_error_container **e…

Completed in 121 milliseconds

12345678910>>...32