Home
last modified time | relevance | path

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

/PHP-7.4/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-7.4/ext/gd/libgd/
H A Dgdhelpers.c15 gd_strtok_r (char *s, char *sep, char **state) in gd_strtok_r() argument
20 while (*sep) in gd_strtok_r()
22 separators[*((unsigned char *) sep)] = 1; in gd_strtok_r()
23 sep++; in gd_strtok_r()
H A Dgdhelpers.h9 extern char *gd_strtok_r(char *s, char *sep, char **state);
/PHP-7.4/main/streams/
H A Dmemory.c639 char *comma, *semi, *sep; in php_stream_url_wrap_rfc2397() local
669 sep = memchr(path, '/', mlen); in php_stream_url_wrap_rfc2397()
671 if (!semi && !sep) { in php_stream_url_wrap_rfc2397()
680 } else if (sep && sep < semi) { /* there is a mime type */ in php_stream_url_wrap_rfc2397()
694 sep = memchr(path, '=', mlen); in php_stream_url_wrap_rfc2397()
696 if (!sep || (semi && semi < sep)) { /* must be ';base64' or failure */ in php_stream_url_wrap_rfc2397()
709 plen = sep - path; in php_stream_url_wrap_rfc2397()
710 vlen = (semi ? (size_t)(semi - sep) : (mlen - plen)) - 1 /* '=' */; in php_stream_url_wrap_rfc2397()
712 add_assoc_stringl_ex(&meta, path, plen, sep + 1, vlen); in php_stream_url_wrap_rfc2397()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_utils.c117 char *sep = NULL; in phpdbg_is_class_method() local
125 sep = strstr(str, "::"); in phpdbg_is_class_method()
127 if (!sep || sep == str || sep+2 == str+len-1) { in phpdbg_is_class_method()
138 *class = estrndup(str, sep - str); in phpdbg_is_class_method()
139 (*class)[sep - str] = 0; in phpdbg_is_class_method()
143 *method = estrndup(sep+2, str + len - (sep + 2)); in phpdbg_is_class_method()
H A Dphpdbg_prompt.c467 char *sep = param->str; in PHPDBG_COMMAND() local
479 if (sep && seplen) { in PHPDBG_COMMAND()
483 if (!memcmp(sep, nl, seplen) && (*buf == '\n' || (*buf == '\r' && buf[1] == '\n'))) { in PHPDBG_COMMAND()
794 char sep = ' '; in PHPDBG_COMMAND() local
802 sep = *(p++); in PHPDBG_COMMAND()
804 while (*p && *p != sep) { in PHPDBG_COMMAND()
805 if (*p == '\\' && (p[1] == sep || p[1] == '\\')) { in PHPDBG_COMMAND()
835 sep = *(p++); in PHPDBG_COMMAND()
840 while (*p && *p != sep) { in PHPDBG_COMMAND()
841 if (*p == '\\' && (p[1] == sep || p[1] == '\\' || (p[1] == '#' && sep == ' '))) { in PHPDBG_COMMAND()
[all …]
/PHP-7.4/ext/xml/
H A Dcompat.c450 XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep) in XML_ParserCreateNS() argument
453 tmp[0] = sep; in XML_ParserCreateNS()
459 …Create_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *sep) in XML_ParserCreate_MM() argument
478 if (sep != NULL) { in XML_ParserCreate_MM()
481 parser->_ns_separator = xmlStrdup(sep); in XML_ParserCreate_MM()
H A Dxml.c200 ZEND_ARG_INFO(0, sep)
/PHP-7.4/ext/reflection/tests/
H A Dparameters_002.phpt22 $sep = $c instanceof ReflectionMethod ? $c->class . '::' : '';
23 echo $f . ': ' . ($c ? $sep . $c->name : 'NULL') . "()\n";
/PHP-7.4/
H A Drun-tests.php960 $sep = "\n" . str_repeat('=', 80) . "\n";
966 $failed_tests_data .= $sep . $test_info['name'] . $test_info['info'];
967 … $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']), FILE_BINARY);
968 … $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']), FILE_BINARY);
969 $failed_tests_data .= $sep . "\n\n";
976 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
1025 $failed_tests_data .= $sep . "PHPINFO" . $sep;
/PHP-7.4/win32/build/
H A Dconfutils.js1865 sep = "";
1873 sep += "-";
1876 STDOUT.WriteLine(sep);
1887 STDOUT.WriteLine(sep);
1905 STDOUT.WriteLine(sep);
/PHP-7.4/ext/date/lib/
H A Dparse_date.re257 { "sep", 0, 9 },
928 monthabbr = 'jan' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' …

Completed in 70 milliseconds