| /PHP_5_4/TSRM/ |
| H A D | TSRM.c | 58 int tsrm_error(int level, const char *format, ...); 754 int tsrm_error(int level, const char *format, ...) argument 761 va_start(args, format); 762 size = vfprintf(tsrm_error_file, format, args);
|
| /PHP_5_4/ext/gd/libgd/ |
| H A D | gdkanji.c | 59 debug (const char *format,...) argument 64 va_start (args, format); 66 vfprintf (stdout, format, args); 73 error (const char *format,...) argument 79 va_start(args, format); 80 vspprintf(&tmp, 0, format, args);
|
| H A D | xbm.c | 159 void gdCtxPrintf(gdIOCtx * out, const char *format, ...) argument 165 va_start(args, format); 166 len = vspprintf(&buf, 0, format, args);
|
| /PHP_5_4/ext/intl/doc/ |
| H A D | datefmt_api.php | 7 * display dates in a localized format or to parse strings 13 * echo $formatter->format(time()); 18 * echo $formatter->format(time()); 86 * @param mixed $value - value to format 91 public function format($value) {} function 210 * @return string the pattern string being used to format/parse 218 * @return boolean 'true' if successful, 'false' if an error occurred. Bad format 268 * @param mixed $value - value to format 404 * @return string the pattern string being used to format/parse 413 * @return boolean 'true' if successful, 'false' if an error occurred. Bad format [all...] |
| H A D | formatter_api.php | 7 * number according to the localized format or given pattern or set of rules, and to 14 * echo $formatter->format($value); 143 * format or parse numbers. 156 * format or parse numbers. 175 * chosen. It is possible to format 64-bit number on 32-bit machine by passing it as double and using 179 * @param integer|double $number Number to format 183 public function format($number, $type = 0) {} function 203 * @param double $number Number to format 204 * @param string $currency 3-letter currency code (ISO 4217) to use in format 211 * This parser would use parseCurrency API string to parse currency string. The format i [all...] |
| H A D | msgfmt_api.php | 36 public function format($args) {} function
|
| /PHP_5_4/Zend/ |
| H A D | zend_sprintf.c | 31 int zend_sprintf(char *buffer, const char *format, ...) argument 35 va_start(args, format); 36 vsprintf(buffer, format, args);
|
| H A D | zend_exceptions.c | 563 int zend_spprintf(char **message, int max_len, char *format, ...) /* {{{ */ argument 568 va_start(arg, format); 569 len = zend_vspprintf(message, max_len, format, arg); 763 ZEND_API zval * zend_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, char *format, ...) /* {{{ */ argument 769 va_start(arg, format); 770 zend_vspprintf(&message, 0, format, arg); 786 static void zend_error_va(int type, const char *file, uint lineno, const char *format, ...) /* {{{ */ argument 790 va_start(args, format); 791 zend_error_cb(type, file, lineno, format, args);
|
| /PHP_5_4/ext/date/lib/ |
| H A D | parse_date.c | 16966 /* to handle the format weekday + last/this/next week */ 24884 timelib_time *timelib_parse_from_format(char *format, char *string, int len, timelib_error_container **errors, const timelib_tzdb *tzdb, timelib_tz_get_wrapper tz_get_wrapper) argument 24886 char *fptr = format; 24915 /* Loop over the format string */ 25138 case '+': /* allow extra chars in the format */ 25144 add_pbf_error(s, "The format separator does not match", string, begin);
|
| /PHP_5_4/ext/dom/ |
| H A D | document.c | 1748 int file_len = 0, bytes, format, saveempty = 0; local 1768 format = doc_props->formatoutput; 1773 bytes = xmlSaveFormatFileEnc(file, docp, NULL, format); 1797 int size, format, saveempty = 0; local 1807 format = doc_props->formatoutput; 1825 xmlNodeDump(buf, docp, node, 0, format); 1842 xmlDocDumpFormatMemory(docp, &mem, &size, format); 2257 int file_len, bytes, format; local 2278 format = doc_props->formatoutput; 2279 bytes = htmlSaveFileFormat(file, docp, encoding, format); 2299 int size, format; local [all...] |
| /PHP_5_4/ext/interbase/ |
| H A D | ibase_query.c | 588 _php_ibase_module_error("Invalid date/time format (expected 3 or 6 fields, got %d." 589 " Use format 'm/d/Y H:i:s'. You gave '%s')" TSRMLS_CC, n, Z_STRVAL_P(val)); 605 _php_ibase_module_error("Invalid date format (expected 3 fields, got %d. " 606 "Use format 'm/d/Y' You gave '%s')" TSRMLS_CC, n, Z_STRVAL_P(val)); 622 _php_ibase_module_error("Invalid time format (expected 3 fields, got %d. " 623 "Use format 'H:i:s'. You gave '%s')" TSRMLS_CC, n, Z_STRVAL_P(val)); 702 char *format = INI_STR("ibase.timestampformat"); local 708 format = INI_STR("ibase.dateformat"); 711 format = INI_STR("ibase.timeformat"); 713 if (!strptime(Z_STRVAL_P(b_var), format, 1321 char *format; local [all...] |
| /PHP_5_4/ext/mysqli/ |
| H A D | mysqli_exception.c | 39 void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char *format, ...) argument 45 va_start(arg, format); 46 vspprintf(&message, 0, format, arg);
|
| /PHP_5_4/ext/pdo_mysql/ |
| H A D | php_pdo_mysql_int.h | 55 static inline void PDO_DBG_INF_FMT(char *format, ...) {} argument 56 static inline void PDO_DBG_ERR_FMT(char *format, ...) {} argument
|
| /PHP_5_4/ext/standard/ |
| H A D | datetime.c | 53 Return date string in standard format for http headers */ 81 char *strptime(const char *s, const char *format, struct tm *tm); 84 /* {{{ proto string strptime(string timestamp, string format) 90 char *format; local 95 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &ts, &ts_length, &format, &format_length) == FAILURE) { 101 unparsed_part = strptime(ts, format, &parsed_time);
|
| H A D | formatted_print.c | 377 char *format, *result, padding; local 416 format = Z_STRVAL_PP(args[format_offset]); 425 PRINTF_DEBUG(("sprintf: format[%d]='%c'\n", inpos, format[inpos])); 427 if (format[inpos] != '%') { 428 php_sprintf_appendchar(&result, &outpos, &size, format[inpos++] TSRMLS_CC); 429 } else if (format[inpos + 1] == '%') { 433 /* starting a new format specifier, reset variables */ 441 format[inpos], inpos)); 442 if (isascii((int)format[inpo [all...] |
| H A D | pack.c | 61 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: integer overflow in format string", code); \ 104 /* {{{ proto string pack(string format, mixed arg1 [, mixed arg2 [, mixed ...]]) 105 Takes one or more arguments and packs them into a binary string according to the format argument */ 111 char *format; local 128 format = Z_STRVAL_PP(argv[0]); 131 /* We have a maximum of <formatlen> format codes to deal with */ 136 /* Preprocess format into formatcodes and formatargs */ 138 char code = format[i++]; 141 /* Handle format arguments if any */ 143 char c = format[ 520 char *format, *input, *formatarg, *inputarg; local [all...] |
| H A D | scanf.c | 118 static char *BuildCharSet(CharSet *cset, char *format); 129 * This function examines a character set format specification 134 * Returns the next format position. 141 static char * BuildCharSet(CharSet *cset, char *format) argument 149 ch = format; 152 ch = ++format; 154 end = format + 1; /* verify this - cc */ 170 cset->chars = (char *) safe_emalloc(sizeof(char), (end - format - 1), 0); 181 ch = format++; 185 ch = format 311 ValidateFormat(char *format, int numVars, int *totalSubs) argument 579 php_sscanf_internal( char *string, char *format, int argCount, zval ***args, int varStart, zval **return_value TSRMLS_DC) argument [all...] |
| H A D | url.c | 697 /* {{{ proto array get_headers(string url[, int format]) 708 long format = 0; local 710 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &url, &url_len, &format) == FAILURE) { 744 if (!format) {
|
| /PHP_5_4/main/ |
| H A D | php_sprintf.c | 31 php_sprintf (char*s, const char* format, ...) argument 36 va_start (args, format); 38 ret = vsprintf (s, format, args);
|
| H A D | snprintf.c | 159 /* exponential format (e.g. 1.2345e+13) */ 196 /* standard format 0. */ 208 /* standard format */ 302 * Convert num to its decimal format. 372 PHPAPI char * php_conv_fp(register char format, register double num, argument 383 if (format == 'F') { 385 } else { /* either e or E format */ 399 if (format == 'F') { 439 if (format != 'F') { 444 *s++ = format; /* eithe 477 ap_php_conv_p2(register u_wide_int num, register int nbits, char format, char *buf_end, register int *len) argument 1192 strx_printv(int *ccp, char *buf, size_t len, const char *format, va_list ap) argument 1223 ap_php_slprintf(char *buf, size_t len, const char *format,...) argument 1239 ap_php_vslprintf(char *buf, size_t len, const char *format, va_list ap) argument 1252 ap_php_snprintf(char *buf, size_t len, const char *format,...) argument 1264 ap_php_vsnprintf(char *buf, size_t len, const char *format, va_list ap) argument 1273 ap_php_vasprintf(char **buf, const char *format, va_list ap) argument 1297 ap_php_asprintf(char **buf, const char *format, ...) argument [all...] |
| H A D | spprintf.c | 196 * Do format conversion placing the output in buffer 734 * The last character of the format string was %. 795 PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) /* {{{ */ argument 799 xbuf_format_converter(&xbuf, format, ap); 812 PHPAPI int spprintf(char **pbuf, size_t max_len, const char *format, ...) /* {{{ */ argument 817 va_start(ap, format); 818 cc = vspprintf(pbuf, max_len, format, ap);
|
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_debug.h | 36 unsigned int level, const char * type, const char *format, ...); 174 static inline void DBG_INF_FMT(const char * const format, ...) {} argument 175 static inline void DBG_ERR_FMT(const char * const format, ...) {} argument
|
| H A D | mysqlnd_alloc.c | 603 PHPAPI int _mysqlnd_sprintf(char ** pbuf, size_t max_len, const char *format, ...) argument 607 va_start(ap, format); 608 len = vspprintf(pbuf, max_len, format, ap); 623 PHPAPI int _mysqlnd_vsprintf(char ** pbuf, size_t max_len, const char * format, va_list ap) argument 625 return vspprintf(pbuf, max_len, format, ap);
|
| /PHP_5_4/ext/sqlite3/ |
| H A D | sqlite3.c | 47 static void php_sqlite3_error(php_sqlite3_db_object *db_obj, char *format, ...) argument 53 va_start(arg, format); 54 vspprintf(&message, 0, format, arg);
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_log.c | 107 char format[129]; local 160 memset(format, '\0', sizeof(format)); /* reset format */ 177 if (format[0] == '\0' || !strcasecmp(format, "total")) { 181 } else if (!strcasecmp(format, "user")) { 185 } else if (!strcasecmp(format, "system")) { 190 zlog(ZLOG_WARNING, "only 'total', 'user' or 'system' are allowed as a modifier for %%%c ('%s')", *s, format); 194 format[ [all...] |