| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 249 register unsigned char *sep; /* end of string matched by subsubRE */ local 335 sep = slow(m, ssp, rest, ssub, esub); 336 if (sep == NULL || sep == ssp) 339 ssp = sep; 341 if (sep == NULL) { 343 sep = ssp; 346 assert(sep == rest); /* must exhaust substring */ 347 assert(slow(m, ssp, sep, ssub, esub) == rest); 348 dp = dissect(m, ssp, sep, ssu [all...] |
| H A D | split.c | 6 = int split(char *string, char *fields[], int nfields, char *sep); 9 split(string, fields, nfields, sep) 13 char *sep; /* "" white, "c" single char, "ab" [ab]+ */ 17 register char sepc = sep[0]; 30 sep = " \t"; /* note, code below knows this is 2 long */ 34 sepc2 = sep[1]; /* now we can safely pick this up */ 65 if (sep[2] == '\0') { 118 sepp = sep; 128 sepp = sep; 146 * pgm sep split [all...] |
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_error.c | 75 _zip_error_get(struct zip_error *err, int *zep, int *sep) 79 if (sep) { 81 *sep = err->sys_err; 83 *sep = 0; 70 _zip_error_get(struct zip_error *err, int *zep, int *sep) argument
|
| H A D | zip_error_get.c | 43 zip_error_get(struct zip *za, int *zep, int *sep) 45 _zip_error_get(&za->error, zep, sep); 41 zip_error_get(struct zip *za, int *zep, int *sep) argument
|
| H A D | zip_file_error_get.c | 43 zip_file_error_get(struct zip_file *zf, int *zep, int *sep) 45 _zip_error_get(&zf->error, zep, sep); 41 zip_file_error_get(struct zip_file *zf, int *zep, int *sep) argument
|
| /PHP_TRUNK/win32/build/ |
| H A D | confutils.js | 1490 sep = "";
1498 sep += "-";
1501 STDOUT.WriteLine(sep);
1512 STDOUT.WriteLine(sep);
1528 STDOUT.WriteLine(sep);
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdhelpers.c | 15 gd_strtok_r (char *s, char *sep, char **state) argument 21 while (*sep) 23 separators[*((unsigned char *) sep)] = 1; 24 sep++;
|
| H A D | gdhelpers.h | 9 extern char *gd_strtok_r(char *s, char *sep, char **state);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | url_scanner_ex.c | 111 const char *sep = "?"; local 169 { sep = separator; goto scan; } 202 smart_str_appends(dest, sep);
|
| H A D | url_scanner_ex.re | 114 const char *sep = "?"; 121 "?" { sep = separator; goto scan; } 138 smart_str_appends(dest, sep);
|
| /PHP_TRUNK/ext/xml/ |
| H A D | compat.c | 456 XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep) argument 459 tmp[0] = sep; 465 XML_ParserCreate_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *sep) argument 491 if (sep != NULL) { 494 parser->_ns_seperator = xmlStrdup(sep);
|
| H A D | xml.c | 106 ZEND_ARG_INFO(0, sep) 1221 /* {{{ proto resource xml_parser_create_ns([string encoding [, string sep]])
|
| /PHP_TRUNK/main/streams/ |
| H A D | memory.c | 605 char *comma, *semi, *sep, *key; local 633 sep = memchr(path, '/', mlen); 635 if (!semi && !sep) { 645 } else if (sep && sep < semi) { /* there is a mime type */ 659 sep = memchr(path, '=', mlen); 661 if (!sep || (semi && semi < sep)) { /* must be ';base64' or failure */ 674 plen = sep - path; 675 vlen = (semi ? semi - sep [all...] |
| /PHP_TRUNK/ |
| H A D | run-tests.php | 363 $sep = "\n" . str_repeat('=', 80) . "\n"; variable 369 $failed_tests_data .= $sep . $test_info['name'] . $test_info['info']; 370 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']), FILE_BINARY); 371 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']), FILE_BINARY); 372 $failed_tests_data .= $sep . "\n\n"; 379 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep; 428 $failed_tests_data .= $sep . "PHPINFO" . $sep;
|
| H A D | server-tests.php | 979 $sep = "\n" . str_repeat('=', 80) . "\n"; variable 985 $failed_tests_data .= $sep . $test_info['name']; 986 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output'])); 987 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff'])); 988 $failed_tests_data .= $sep . "\n\n"; 995 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep; 1027 $failed_tests_data .= $sep . "PHPINFO" . $sep;
|