Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/tests/strings/
H A Dbug65230.phpt18 $sep = $conv['decimal_point'];
21 printf(" sep: %s\n", $sep);
35 sep: ,
42 sep: .
49 sep: ,
56 sep: ,
/PHP-5.5/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.5/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.5/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.5/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.5/main/streams/
H A Dmemory.c613 char *comma, *semi, *sep, *key; in php_stream_url_wrap_rfc2397() local
641 sep = memchr(path, '/', mlen); in php_stream_url_wrap_rfc2397()
643 if (!semi && !sep) { in php_stream_url_wrap_rfc2397()
653 } else if (sep && sep < semi) { /* there is a mime type */ in php_stream_url_wrap_rfc2397()
667 sep = memchr(path, '=', mlen); in php_stream_url_wrap_rfc2397()
669 if (!sep || (semi && semi < sep)) { /* must be ';base64' or failure */ in php_stream_url_wrap_rfc2397()
682 plen = sep - path; in php_stream_url_wrap_rfc2397()
683 vlen = (semi ? semi - sep : mlen - plen) - 1 /* '=' */; in php_stream_url_wrap_rfc2397()
686 add_assoc_stringl_ex(meta, key, plen + 1, sep + 1, vlen, 1); in php_stream_url_wrap_rfc2397()
/PHP-5.5/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_separator = xmlStrdup(sep); in XML_ParserCreate_MM()
H A Dxml.c106 ZEND_ARG_INFO(0, sep)
/PHP-5.5/
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.php365 $sep = "\n" . str_repeat('=', 80) . "\n";
371 $failed_tests_data .= $sep . $test_info['name'] . $test_info['info'];
372 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']), FILE_BINARY);
373 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']), FILE_BINARY);
374 $failed_tests_data .= $sep . "\n\n";
381 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
430 $failed_tests_data .= $sep . "PHPINFO" . $sep;
/PHP-5.5/ext/standard/
H A Durl_scanner_ex.c111 const char *sep = "?"; in PHP_INI_END() local
169 { sep = separator; goto scan; } in PHP_INI_END()
202 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.5/win32/build/
H A Dconfutils.js1568 sep = "";
1576 sep += "-";
1579 STDOUT.WriteLine(sep);
1590 STDOUT.WriteLine(sep);
1606 STDOUT.WriteLine(sep);
/PHP-5.5/ext/date/lib/
H A Dparse_date.re262 { "sep", 0, 9 },
855 monthabbr = 'jan' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' …
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput82648 12-sep-98
2651 sep-12-98
H A Dtestoutput84240 12-sep-98
4241 0: 12-sep-98
4246 sep-12-98
H A Dtestoutput13635 12-sep-98
3636 0: 12-sep-98
3641 sep-12-98
H A Dtestinput12275 12-sep-98
2278 sep-12-98
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2309 U+000B), FF (form feed, U+000C), NEL (next line, U+0085), LS (line sep-
8734 ^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$
8956 re> /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
8989 re> /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
9032 re> /\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d/

Completed in 95 milliseconds