Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 25 of 26) sorted by relevance

12

/PHP-5.3/ext/gd/libgd/
H A Dgdhelpers.c15 gd_strtok_r (char *s, char *sep, char **state) in gd_strtok_r() argument
21 while (*sep) in gd_strtok_r()
23 separators[*((unsigned char *) sep)] = 1; in gd_strtok_r()
24 sep++; in gd_strtok_r()
H A Dgdhelpers.h9 extern char *gd_strtok_r(char *s, char *sep, char **state);
/PHP-5.3/ext/zip/lib/
H A Dzip_error.c70 _zip_error_get(struct zip_error *err, int *zep, int *sep) in _zip_error_get() argument
74 if (sep) { in _zip_error_get()
76 *sep = err->sys_err; in _zip_error_get()
78 *sep = 0; in _zip_error_get()
H A Dzip_error_get.c41 zip_error_get(struct zip *za, int *zep, int *sep) in zip_error_get() argument
43 _zip_error_get(&za->error, zep, sep); in zip_error_get()
H A Dzip_file_error_get.c41 zip_file_error_get(struct zip_file *zf, int *zep, int *sep) in zip_file_error_get() argument
43 _zip_error_get(&zf->error, zep, sep); in zip_file_error_get()
/PHP-5.3/ext/ereg/regex/
H A Dsplit.c9 split(string, fields, nfields, sep) in split() argument
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;
H A Dengine.c249 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, ssub, esub);
349 assert(dp == sep);
/PHP-5.3/ext/xml/tests/
H A Dxml_parser_create_ns_error.phpt11 /* Prototype : proto resource xml_parser_create_ns([string encoding [, string sep]])
23 $sep = 'string_val';
25 var_dump( xml_parser_create_ns($encoding, $sep, $extra_arg) );
H A Dxml_parser_create_ns_variation1.phpt11 /* Prototype : proto resource xml_parser_create_ns([string encoding [, string sep]])
/PHP-5.3/ext/sqlite/tests/
H A Dsqlite_006.phpt23 $sep = array_shift($args);
24 return implode($sep, $args);
H A Dsqlite_closures_002.phpt26 $sep = array_shift($args);
27 return implode($sep, $args);
/PHP-5.3/main/streams/
H A Dmemory.c609 char *comma, *semi, *sep, *key; in php_stream_url_wrap_rfc2397() local
637 sep = memchr(path, '/', mlen); in php_stream_url_wrap_rfc2397()
639 if (!semi && !sep) { in php_stream_url_wrap_rfc2397()
649 } else if (sep && sep < semi) { /* there is a mime type */ in php_stream_url_wrap_rfc2397()
663 sep = memchr(path, '=', mlen); in php_stream_url_wrap_rfc2397()
665 if (!sep || (semi && semi < sep)) { /* must be ';base64' or failure */ in php_stream_url_wrap_rfc2397()
678 plen = sep - path; in php_stream_url_wrap_rfc2397()
679 vlen = (semi ? semi - sep : mlen - plen) - 1 /* '=' */; in php_stream_url_wrap_rfc2397()
681 add_assoc_stringl_ex(meta, key, plen + 1, sep + 1, vlen, 1); in php_stream_url_wrap_rfc2397()
/PHP-5.3/
H A Dserver-tests.php979 $sep = "\n" . str_repeat('=', 80) . "\n";
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;
H A Drun-tests.php359 $sep = "\n" . str_repeat('=', 80) . "\n";
365 $failed_tests_data .= $sep . $test_info['name'] . $test_info['info'];
366 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']), FILE_BINARY);
367 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']), FILE_BINARY);
368 $failed_tests_data .= $sep . "\n\n";
375 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
424 $failed_tests_data .= $sep . "PHPINFO" . $sep;
/PHP-5.3/ext/xml/
H A Dcompat.c456 XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep) in XML_ParserCreateNS() argument
459 tmp[0] = sep; in XML_ParserCreateNS()
465 …Create_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *sep) in XML_ParserCreate_MM() argument
491 if (sep != NULL) { in XML_ParserCreate_MM()
494 parser->_ns_seperator = xmlStrdup(sep); in XML_ParserCreate_MM()
H A Dxml.c105 ZEND_ARG_INFO(0, sep)
/PHP-5.3/ext/standard/
H A Dproc_open.c283 char *space, *sep, *arg0; in php_make_safe_mode_command() local
308 sep = zend_memrchr(arg0, PHP_DIR_SEPARATOR, larg0); in php_make_safe_mode_command()
310 …spprintf(safecmd, 0, "%s%s%s%s", PG(safe_mode_exec_dir), (sep ? sep : "/"), (sep ? "" : arg0), (sp… in php_make_safe_mode_command()
H A Durl_scanner_ex.c110 const char *sep = "?"; in PHP_INI_END() local
168 { sep = separator; goto scan; } in PHP_INI_END()
201 smart_str_appends(dest, sep); in PHP_INI_END()
H A Durl_scanner_ex.re114 const char *sep = "?";
121 "?" { sep = separator; goto scan; }
138 smart_str_appends(dest, sep);
/PHP-5.3/win32/build/
H A Dconfutils.js1478 sep = "";
1486 sep += "-";
1489 STDOUT.WriteLine(sep);
1500 STDOUT.WriteLine(sep);
1516 STDOUT.WriteLine(sep);
/PHP-5.3/ext/date/lib/
H A Dparse_date.re264 { "sep", 0, 9 },
915 monthabbr = 'jan' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' …
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestinput82643 12-sep-98
2646 sep-12-98
H A Dtestoutput13616 12-sep-98
3617 0: 12-sep-98
3622 sep-12-98
H A Dtestoutput84416 12-sep-98
4417 0: 12-sep-98
4422 sep-12-98
H A Dtestinput12268 12-sep-98
2271 sep-12-98

Completed in 128 milliseconds

12