| /PHP_5_5/build/ |
| H A D | build.mk | 66 (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_5/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_5/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_5/win32/build/ |
| H A D | confutils.js | 262 var space = "";
274 space += indent_char;
286 ret_text += space;
301 ret_text += space;
1736 // The trailing space is needed to prevent the trailing backslash
|
| /PHP_5_5/Zend/ |
| H A D | zend_execute.h | 342 ZEND_API const char *get_active_class_name(const char **space TSRMLS_DC);
|
| H A D | zend_list.c | 116 const char *space; local 122 class_name = get_active_class_name(&space TSRMLS_CC); 123 zend_error(E_WARNING, "%s%s%s(): no %s resource supplied", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name); 128 class_name = get_active_class_name(&space TSRMLS_CC); 129 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); 141 class_name = get_active_class_name(&space TSRMLS_CC); 142 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); 160 class_name = get_active_class_name(&space TSRMLS_CC); 161 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_API.c | 194 const char *space; local 195 const char *class_name = get_active_class_name(&space TSRMLS_CC); 197 zend_error(E_WARNING, "Wrong parameter count for %s%s%s()", class_name, space, get_active_function_name(TSRMLS_C)); 694 const char *space; local 695 const char *class_name = get_active_class_name(&space TSRMLS_CC); 699 class_name, space, get_active_function_name(TSRMLS_C), arg_num, error); 703 class_name, space, get_active_function_name(TSRMLS_C), arg_num, expected_type, 855 /* allocate space for array and store args */
|
| H A D | zend_execute_API.c | 343 ZEND_API const char *get_active_class_name(const char **space TSRMLS_DC) /* {{{ */ 346 if (space) { 347 *space = ""; 357 if (space) { 358 *space = ce ? "::" : ""; 363 if (space) { 364 *space = "";
|
| H A D | zend_vm_def.h | 3208 const char *space; variable 3214 space = "::"; 3216 class_name = space = ""; 3221 zend_error(E_WARNING, "Missing argument %u for %s%s%s(), called in %s on line %d and defined", opline->op1.num, class_name, space, get_active_function_name(TSRMLS_C), ptr->op_array->filename, ptr->opline->lineno); 3223 zend_error(E_WARNING, "Missing argument %u for %s%s%s()", opline->op1.num, class_name, space, get_active_function_name(TSRMLS_C));
|
| H A D | zend_vm_execute.h | 700 const char *space; local 706 space = "::"; 708 class_name = space = ""; 713 zend_error(E_WARNING, "Missing argument %u for %s%s%s(), called in %s on line %d and defined", opline->op1.num, class_name, space, get_active_function_name(TSRMLS_C), ptr->op_array->filename, ptr->opline->lineno); 715 zend_error(E_WARNING, "Missing argument %u for %s%s%s()", opline->op1.num, class_name, space, get_active_function_name(TSRMLS_C)); [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | filestat.c | 122 static int php_disk_total_space(char *path, double *space TSRMLS_DC) /* {{{ */ 177 *space = bytestotal; 189 *space = bytestotal; 223 *space = bytestotal; 231 Get total disk space for filesystem that path is on */ 253 static int php_disk_free_space(char *path, double *space TSRMLS_DC) /* {{{ */ 309 *space = bytesfree; 321 *space = bytesfree; 358 *space = bytesfree; 366 Get free disk space fo [all...] |
| /PHP_5_5/main/ |
| H A D | php_variables.c | 105 if (var_len==0) { /* empty variable name, or variable name with a space in it */ 367 /* Remove leading spaces from cookie names, needed for multi-cookie header where ; can be followed by a space */ 456 char *ss, *space; local 483 space = strchr(ss, '+'); 484 if (space) { 485 *space = '\0'; 499 if (space) { 500 *space = '+'; 501 ss = space + 1; 503 ss = space; [all...] |
| H A D | main.c | 702 const char *space = ""; local 760 class_name = get_active_class_name(&space TSRMLS_CC); 766 origin_len = spprintf(&origin, 0, "%s%s%s(%s)", class_name, space, function, params); 787 if (space[0] == '\0') {
|
| /PHP_5_5/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_5/ext/date/lib/ |
| H A D | parse_iso_intervals.re | 265 space = [ \t]+;
|
| H A D | parse_date.re | 840 space = [ \t]+; 882 timetiny12 = hour12 space? meridian; 883 timeshort12 = hour12[:.]minutelz space? meridian; 884 timelong12 = hour12[:.]minute[:.]secondlz space? meridian; 890 /* iso8601shorttz = hour24 [:] minutelz space? (tzcorrection | tz); */ 891 iso8601normtz = 't'? hour24 [:.] minute [:.] secondlz space? (tzcorrection | tz); 892 /* iso8601longtz = hour24 [:] minute [:] secondlz frac space? (tzcorrection | tz); */ 895 /* gnunocolontz = hour24lz minutelz space? (tzcorrection | tz); */ 897 /* iso8601nocolontz = hour24lz minutelz secondlz space? (tzcorrection | tz); */ 932 backof = 'back of ' hour24 space [all...] |
| /PHP_5_5/ext/gd/ |
| H A D | gd.c | 764 ZEND_ARG_INFO(0, space) 774 ZEND_ARG_INFO(0, space) 1434 * byte 4-7: (int) value of first character in the font (often 32, space) 4109 /* {{{ 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]) 4115 long _fg, _bg, x, y, size, space = 0, aa_steps = 4, width = 0; local 4131 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) { 4205 amount_kern += str[i - 1] == ' ' ? space : 0; 4216 str_img = T1_AASetString(*f_ind, str, str_len, space, T1_KERNING, size, transform); 4248 /* {{{ proto array imagepsbbox(string text, resource font, int size [, int space, int tightness, float angle]) 4255 int i, space local [all...] |