Searched refs:sep (Results 1 – 11 of 11) sorted by relevance
/PHP-8.1/ext/standard/tests/strings/ |
H A D | bug65230.phpt | 19 $sep = $conv['decimal_point']; 22 printf(" sep: %s\n", $sep); 37 sep: , 44 sep: . 51 sep: , 58 sep: ,
|
/PHP-8.1/ext/gd/libgd/ |
H A D | gdhelpers.c | 15 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 D | gdhelpers.h | 9 extern char *gd_strtok_r(char *s, char *sep, char **state);
|
/PHP-8.1/main/streams/ |
H A D | memory.c | 608 char *comma, *semi, *sep; in php_stream_url_wrap_rfc2397() local 638 sep = memchr(path, '/', mlen); in php_stream_url_wrap_rfc2397() 640 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 ? (size_t)(semi - sep) : (mlen - plen)) - 1 /* '=' */; in php_stream_url_wrap_rfc2397() 681 add_assoc_stringl_ex(&meta, path, plen, sep + 1, vlen); in php_stream_url_wrap_rfc2397()
|
/PHP-8.1/sapi/phpdbg/ |
H A D | phpdbg_utils.c | 114 char *sep = NULL; in phpdbg_is_class_method() local 122 sep = strstr(str, "::"); in phpdbg_is_class_method() 124 if (!sep || sep == str || sep+2 == str+len-1) { in phpdbg_is_class_method() 135 *class = estrndup(str, sep - str); in phpdbg_is_class_method() 136 (*class)[sep - str] = 0; in phpdbg_is_class_method() 140 *method = estrndup(sep+2, str + len - (sep + 2)); in phpdbg_is_class_method()
|
H A D | phpdbg_prompt.c | 461 char *sep = param->str; in PHPDBG_COMMAND() local 473 if (sep && seplen) { in PHPDBG_COMMAND() 477 if (!memcmp(sep, nl, seplen) && (*buf == '\n' || (*buf == '\r' && buf[1] == '\n'))) { in PHPDBG_COMMAND() 783 char sep = ' '; in PHPDBG_COMMAND() local 791 sep = *(p++); in PHPDBG_COMMAND() 793 while (*p && *p != sep) { in PHPDBG_COMMAND() 794 if (*p == '\\' && (p[1] == sep || p[1] == '\\')) { in PHPDBG_COMMAND() 824 sep = *(p++); in PHPDBG_COMMAND() 829 while (*p && *p != sep) { in PHPDBG_COMMAND() 830 if (*p == '\\' && (p[1] == sep || p[1] == '\\' || (p[1] == '#' && sep == ' '))) { in PHPDBG_COMMAND() [all …]
|
/PHP-8.1/ext/xml/ |
H A D | compat.c | 449 XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep) in XML_ParserCreateNS() argument 452 tmp[0] = sep; in XML_ParserCreateNS() 458 …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()
|
/PHP-8.1/ext/reflection/tests/ |
H A D | parameters_002.phpt | 22 $sep = $c instanceof ReflectionMethod ? $c->class . '::' : ''; 23 echo $f . ': ' . ($c ? $sep . $c->name : 'NULL') . "()\n";
|
/PHP-8.1/win32/build/ |
H A D | confutils.js | 1874 sep = ""; 1882 sep += "-"; 1885 STDOUT.WriteLine(sep); 1896 STDOUT.WriteLine(sep); 1914 STDOUT.WriteLine(sep);
|
/PHP-8.1/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 2799 if(skip_sep(ls)==sep){ 2820 luaZ_bufflen(ls->buff)-2*(2+sep)); 2890 int sep=skip_sep(ls); 2892 if(sep>=0){ 2893 read_long_string(ls,NULL,sep); 2903 int sep=skip_sep(ls); 2904 if(sep>=0){ 2905 read_long_string(ls,seminfo,sep); 2908 else if(sep==-1)return'['; 6505 const char*sep=luaL_optlstring(L,2,"",&lsep); [all …]
|
/PHP-8.1/ext/date/lib/ |
H A D | parse_date.re | 273 { "sep", 0, 9 }, 1001 monthabbr = 'jan' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' …
|
Completed in 66 milliseconds