Home
last modified time | relevance | path

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

/PHP-7.2/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.2/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-7.2/ext/zip/lib/
H A Dzip_file_error_get.c39 zip_file_error_get(zip_file_t *zf, int *zep, int *sep) in zip_file_error_get() argument
41 _zip_error_get(&zf->error, zep, sep); in zip_file_error_get()
H A Dzip_error.c113 _zip_error_get(const zip_error_t *err, int *zep, int *sep) in _zip_error_get() argument
117 if (sep) { in _zip_error_get()
119 *sep = err->sys_err; in _zip_error_get()
121 *sep = 0; in _zip_error_get()
H A Dzip_error_get.c40 zip_error_get(zip_t *za, int *zep, int *sep) in zip_error_get() argument
42 _zip_error_get(&za->error, zep, sep); in zip_error_get()
/PHP-7.2/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-7.2/main/streams/
H A Dmemory.c620 char *comma, *semi, *sep, *key; in php_stream_url_wrap_rfc2397() local
650 sep = memchr(path, '/', mlen); in php_stream_url_wrap_rfc2397()
652 if (!semi && !sep) { in php_stream_url_wrap_rfc2397()
661 } else if (sep && sep < semi) { /* there is a mime type */ in php_stream_url_wrap_rfc2397()
675 sep = memchr(path, '=', mlen); in php_stream_url_wrap_rfc2397()
677 if (!sep || (semi && semi < sep)) { /* must be ';base64' or failure */ in php_stream_url_wrap_rfc2397()
690 plen = sep - path; in php_stream_url_wrap_rfc2397()
691 vlen = (semi ? (size_t)(semi - sep) : (mlen - plen)) - 1 /* '=' */; in php_stream_url_wrap_rfc2397()
694 add_assoc_stringl_ex(&meta, key, plen, sep + 1, vlen); in php_stream_url_wrap_rfc2397()
/PHP-7.2/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.c466 char *sep = param->str; in PHPDBG_COMMAND() local
478 if (sep && seplen) { in PHPDBG_COMMAND()
482 if (!memcmp(sep, nl, seplen) && (*buf == '\n' || (*buf == '\r' && buf[1] == '\n'))) { in PHPDBG_COMMAND()
840 char sep = ' '; in PHPDBG_COMMAND() local
848 sep = *(p++); in PHPDBG_COMMAND()
850 while (*p && *p != sep) { in PHPDBG_COMMAND()
851 if (*p == '\\' && (p[1] == sep || p[1] == '\\')) { in PHPDBG_COMMAND()
881 sep = *(p++); in PHPDBG_COMMAND()
886 while (*p && *p != sep) { in PHPDBG_COMMAND()
887 if (*p == '\\' && (p[1] == sep || p[1] == '\\' || (p[1] == '#' && sep == ' '))) { in PHPDBG_COMMAND()
[all …]
/PHP-7.2/
H A Dserver-tests.php966 $sep = "\n" . str_repeat('=', 80) . "\n";
972 $failed_tests_data .= $sep . $test_info['name'];
973 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']));
974 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']));
975 $failed_tests_data .= $sep . "\n\n";
982 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
1014 $failed_tests_data .= $sep . "PHPINFO" . $sep;
H A Drun-tests.php393 $sep = "\n" . str_repeat('=', 80) . "\n";
399 $failed_tests_data .= $sep . $test_info['name'] . $test_info['info'];
400 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']), FILE_BINARY);
401 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']), FILE_BINARY);
402 $failed_tests_data .= $sep . "\n\n";
409 $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
458 $failed_tests_data .= $sep . "PHPINFO" . $sep;
/PHP-7.2/ext/xml/
H A Dcompat.c447 XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep) in XML_ParserCreateNS() argument
450 tmp[0] = sep; in XML_ParserCreateNS()
456 …Create_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *sep) in XML_ParserCreate_MM() argument
482 if (sep != NULL) { in XML_ParserCreate_MM()
485 parser->_ns_separator = xmlStrdup(sep); in XML_ParserCreate_MM()
H A Dxml.c113 ZEND_ARG_INFO(0, sep)
/PHP-7.2/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.2/win32/build/
H A Dconfutils.js1842 sep = "";
1850 sep += "-";
1853 STDOUT.WriteLine(sep);
1864 STDOUT.WriteLine(sep);
1882 STDOUT.WriteLine(sep);
/PHP-7.2/ext/date/lib/
H A Dparse_date.re258 { "sep", 0, 9 },
895 monthabbr = 'jan' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' …
/PHP-7.2/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-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt2308 U+000B), FF (form feed, U+000C), NEL (next line, U+0085), LS (line sep-
8781 ^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$
9003 re> /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
9036 re> /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
9079 re> /\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d/

Completed in 130 milliseconds