| /PHP_5_3/build/ |
| H A D | build.mk | 67 (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[[:space:]]/ /g'` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \
|
| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | output.c | 57 non-zero, we must output one space before the number. OUT_CHAR 61 bc_out_long (val, size, space, out_char) 63 int size, space; 73 if (space) (*out_char) (' ');
|
| /PHP_5_3/ext/ereg/regex/ |
| H A D | regexec.c | 77 #define STATEVARS int vn; unsigned char *space 78 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \ 79 if ((m)->space == NULL) return(REG_ESPACE); \ 81 #define STATETEARDOWN(m) { free((m)->space); } 82 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
|
| /PHP_5_3/win32/build/ |
| H A D | confutils.js | 260 var space = "";
272 space += indent_char;
284 ret_text += space;
299 ret_text += space;
1724 // The trailing space is needed to prevent the trailing backslash
|
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_date.re | 875 space = [ \t]+; 917 timetiny12 = hour12 space? meridian; 918 timeshort12 = hour12[:.]minutelz space? meridian; 919 timelong12 = hour12[:.]minute[:.]secondlz space? meridian; 925 /* iso8601shorttz = hour24 [:] minutelz space? (tzcorrection | tz); */ 926 iso8601normtz = 't'? hour24 [:.] minute [:.] secondlz space? (tzcorrection | tz); 927 /* iso8601longtz = hour24 [:] minute [:] secondlz frac space? (tzcorrection | tz); */ 930 /* gnunocolontz = hour24lz minutelz space? (tzcorrection | tz); */ 932 /* iso8601nocolontz = hour24lz minutelz secondlz space? (tzcorrection | tz); */ 967 backof = 'back of ' hour24 space [all...] |
| H A D | parse_iso_intervals.re | 300 space = [ \t]+;
|
| /PHP_5_3/ext/standard/ |
| H A D | filestat.c | 123 static int php_disk_total_space(char *path, double *space TSRMLS_DC) /* {{{ */ 178 *space = bytestotal; 190 *space = bytestotal; 224 *space = bytestotal; 232 Get total disk space for filesystem that path is on */ 254 static int php_disk_free_space(char *path, double *space TSRMLS_DC) /* {{{ */ 310 *space = bytesfree; 322 *space = bytesfree; 359 *space = bytesfree; 367 Get free disk space fo [all...] |
| H A D | proc_open.c | 283 char *space, *sep, *arg0; local 294 space = memchr(arg0, ' ', lcmd); 295 if (space) { 296 *space = '\0'; 297 larg0 = space - arg0; 310 spprintf(safecmd, 0, "%s%s%s%s", PG(safe_mode_exec_dir), (sep ? sep : "/"), (sep ? "" : arg0), (space ? cmd + larg0 : ""));
|
| /PHP_5_3/main/ |
| H A D | php_variables.c | 111 if (var_len==0) { /* empty variable name, or variable name with a space in it */ 392 /* Remove leading spaces from cookie names, needed for multi-cookie header where ; can be followed by a space */ 492 char *ss, *space; local 519 space = strchr(ss, '+'); 520 if (space) { 521 *space = '\0'; 535 if (space) { 536 *space = '+'; 537 ss = space + 1; 539 ss = space; [all...] |
| H A D | main.c | 674 char *space = ""; local 731 class_name = get_active_class_name(&space TSRMLS_CC); 737 origin_len = spprintf(&origin, 0, "%s%s%s(%s)", class_name, space, function, params); 758 if (space[0] == '\0') {
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 188 char *space; local 189 char *class_name = get_active_class_name(&space TSRMLS_CC); 191 zend_error(E_WARNING, "Wrong parameter count for %s%s%s()", class_name, space, get_active_function_name(TSRMLS_C)); 652 char *space; local 653 char *class_name = get_active_class_name(&space TSRMLS_CC); 657 class_name, space, get_active_function_name(TSRMLS_C), arg_num, error); 661 class_name, space, get_active_function_name(TSRMLS_C), arg_num, expected_type, 805 /* allocate space for array and store args */
|
| H A D | zend_execute.h | 359 ZEND_API char *get_active_class_name(char **space TSRMLS_DC);
|
| H A D | zend_list.c | 117 char *space; local 123 class_name = get_active_class_name(&space TSRMLS_CC); 124 zend_error(E_WARNING, "%s%s%s(): no %s resource supplied", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name); 129 class_name = get_active_class_name(&space TSRMLS_CC); 130 zend_error(E_WARNING, "%s%s%s(): supplied argument is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name); 142 class_name = get_active_class_name(&space TSRMLS_CC); 143 zend_error(E_WARNING, "%s%s%s(): %d is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), id, resource_type_name); 161 class_name = get_active_class_name(&space TSRMLS_CC); 162 zend_error(E_WARNING, "%s%s%s(): supplied resource is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name);
|
| H A D | zend_execute_API.c | 349 ZEND_API char *get_active_class_name(char **space TSRMLS_DC) /* {{{ */ 352 if (space) { 353 *space = ""; 363 if (space) { 364 *space = ce ? "::" : ""; 369 if (space) { 370 *space = "";
|
| H A D | zend_vm_def.h | 2748 char *space; variable 2749 char *class_name = get_active_class_name(&space TSRMLS_CC); 2754 zend_error(E_WARNING, "Missing argument %ld for %s%s%s(), called in %s on line %d and defined", opline->op1.u.constant.value.lval, class_name, space, get_active_function_name(TSRMLS_C), ptr->op_array->filename, ptr->opline->lineno); 2756 zend_error(E_WARNING, "Missing argument %ld for %s%s%s()", opline->op1.u.constant.value.lval, class_name, space, get_active_function_name(TSRMLS_C));
|
| H A D | zend_vm_execute.h | 440 char *space; local 441 char *class_name = get_active_class_name(&space TSRMLS_CC); 446 zend_error(E_WARNING, "Missing argument %ld for %s%s%s(), called in %s on line %d and defined", opline->op1.u.constant.value.lval, class_name, space, get_active_function_name(TSRMLS_C), ptr->op_array->filename, ptr->opline->lineno); 448 zend_error(E_WARNING, "Missing argument %ld for %s%s%s()", opline->op1.u.constant.value.lval, class_name, space, get_active_function_name(TSRMLS_C)); [all...] |
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 1520 #define STRING_space0 "space\0" 1836 #define PT_SPACE 6 /* Perl space - Z plus 9,10,12,13 */ 1837 #define PT_PXSPACE 7 /* POSIX space - Z plus 9,10,11,12,13 */ 2393 const pcre_uchar *start_workspace;/* The start of working space */ 2544 #define cbit_space 0 /* [:space:] or \s */
|
| /PHP_5_3/ext/gd/ |
| H A D | gd.c | 809 ZEND_ARG_INFO(0, space) 819 ZEND_ARG_INFO(0, space) 1492 * byte 4-7: (int) value of first character in the font (often 32, space) 4214 /* {{{ proto array imagepstext(resource image, string text, resource font, int size, int foreground, int background, int xcoord, int ycoord [, int space [, int tightness [, float angle [, int antialias]) 4220 long _fg, _bg, x, y, size, space = 0, aa_steps = 4, width = 0; local 4236 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsrlllll|lldl", &img, &str, &str_len, &fnt, &size, &_fg, &_bg, &x, &y, &space, &width, &angle, &aa_steps) == FAILURE) { 4310 amount_kern += str[i - 1] == ' ' ? space : 0; 4321 str_img = T1_AASetString(*f_ind, str, str_len, space, T1_KERNING, size, transform); 4353 /* {{{ proto array imagepsbbox(string text, resource font, int size [, int space, int tightness, float angle]) 4360 int i, space local [all...] |