/PHP-5.5/ext/json/tests/ |
H A D | fail001.phpt | 28 '{"Missing colon" null}', 29 '{"Double colon":: null}', 30 '{"Comma instead of colon", null}', 136 Testing: {"Missing colon" null} 141 Testing: {"Double colon":: null} 146 Testing: {"Comma instead of colon", null}
|
/PHP-5.5/sapi/webjames/ |
H A D | webjames.c | 192 char *colon=strchr(WG(conn)->authorization,':'); in webjames_module_main() local 193 if (colon) { in webjames_module_main() 194 SG(request_info).auth_user = emalloc(colon-WG(conn)->authorization+1); in webjames_module_main() 196 memcpy(SG(request_info).auth_user,WG(conn)->authorization,colon-WG(conn)->authorization); in webjames_module_main() 197 SG(request_info).auth_user[colon-WG(conn)->authorization]='\0'; in webjames_module_main() 198 SG(request_info).auth_password = estrdup(colon+1); in webjames_module_main()
|
/PHP-5.5/Zend/ |
H A D | zend_constants.c | 319 const char *colon; in zend_get_constant_ex() local 331 if ((colon = zend_memrchr(name, ':', name_len)) && in zend_get_constant_ex() 332 colon > name && (*(colon - 1) == ':')) { in zend_get_constant_ex() 333 int class_name_len = colon - name - 1; in zend_get_constant_ex() 335 const char *constant_name = colon + 1; in zend_get_constant_ex() 394 if ((colon = zend_memrchr(name, '\\', name_len)) != NULL) { in zend_get_constant_ex() 396 int prefix_len = colon - name; in zend_get_constant_ex() 398 const char *constant_name = colon + 1; in zend_get_constant_ex()
|
H A D | zend_execute_API.c | 471 char *colon; in zval_update_constant_ex() local 490 if ((colon = (char*)zend_memrchr(Z_STRVAL_P(p), ':', Z_STRLEN_P(p)))) { in zval_update_constant_ex() 492 Z_STRLEN_P(p) -= ((colon - Z_STRVAL_P(p)) + 1); in zval_update_constant_ex() 494 colon = estrndup(colon, Z_STRLEN_P(p)); in zval_update_constant_ex() 496 Z_STRVAL_P(p) = colon; in zval_update_constant_ex() 498 Z_STRVAL_P(p) = colon + 1; in zval_update_constant_ex() 592 if ((colon = (char*)zend_memrchr(str_index, ':', str_index_len - 3))) { in zval_update_constant_ex() 594 str_index_len -= ((colon - str_index) + 1); in zval_update_constant_ex() 595 str_index = colon; in zval_update_constant_ex()
|
H A D | zend_API.c | 2748 const char *colon; in zend_is_callable_check_func() local 2780 if ((colon = zend_memrchr(Z_STRVAL_P(callable), ':', Z_STRLEN_P(callable))) != NULL && in zend_is_callable_check_func() 2781 colon > Z_STRVAL_P(callable) && in zend_is_callable_check_func() 2782 *(colon-1) == ':' in zend_is_callable_check_func() 2784 colon--; in zend_is_callable_check_func() 2785 clen = colon - Z_STRVAL_P(callable); in zend_is_callable_check_func() 2788 if (colon == Z_STRVAL_P(callable)) { in zend_is_callable_check_func()
|
/PHP-5.5/sapi/cgi/tests/ |
H A D | 011.phpt | 112 Warning: Header to delete may not contain colon. in %s on line 3 124 Warning: Header to delete may not contain colon. in %s on line 3 150 Warning: Header to delete may not contain colon. in %s on line 2
|
/PHP-5.5/main/ |
H A D | network.c | 509 char *colon; local 522 colon = memchr(addr + 1, ']', addrlen-1); 523 if (!colon || colon[1] != ':') { 526 port = atoi(colon + 2); 529 colon = memchr(addr, ':', addrlen); 530 if (!colon) { 533 port = atoi(colon + 1); 536 tmp = estrndup(addr, colon - addr);
|
/PHP-5.5/ext/date/tests/ |
H A D | gmdate_variation10.phpt | 29 echo "\n-- Testing gmdate() function with Difference to GMT in hours using colon as separator forma… 58 -- Testing gmdate() function with Difference to GMT in hours using colon as separator format --
|
/PHP-5.5/ext/standard/tests/file/ |
H A D | bug51094.phpt | 2 Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that includes a semi-colon).
|
H A D | parse_ini_file.phpt | 13 ; Comment starts with semi-colon(;)
|
/PHP-5.5/scripts/dev/generate-phpt/src/texts/ |
H A D | help.txt | 11 -s sections....................... Create optional sections, colon separated list
|
/PHP-5.5/main/streams/ |
H A D | xp_socket.c | 526 char *colon; in parse_ip_address_ex() local 546 colon = memchr(str, ':', str_len - 1); in parse_ip_address_ex() 548 colon = NULL; in parse_ip_address_ex() 550 if (colon) { in parse_ip_address_ex() 551 *portno = atoi(colon + 1); in parse_ip_address_ex() 552 host = estrndup(str, colon - str); in parse_ip_address_ex()
|
/PHP-5.5/ext/pdo/ |
H A D | pdo_dbh.c | 208 char *colon; in PHP_METHOD() local 223 colon = strchr(data_source, ':'); in PHP_METHOD() 225 if (!colon) { in PHP_METHOD() 238 colon = strchr(data_source, ':'); in PHP_METHOD() 240 if (!colon) { in PHP_METHOD() 255 colon = strchr(data_source, ':'); in PHP_METHOD() 256 if (!colon) { in PHP_METHOD() 263 driver = pdo_find_driver(data_source, colon - data_source); in PHP_METHOD() 365 dbh->data_source_len = strlen(colon + 1); in PHP_METHOD() 366 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); in PHP_METHOD()
|
/PHP-5.5/sapi/isapi/ |
H A D | php5isapi.c | 645 char *colon = strchr(variable, ':'); in sapi_isapi_register_server_variables() local 647 if (colon) { in sapi_isapi_register_server_variables() 648 char *value = colon+1; in sapi_isapi_register_server_variables() 653 *colon = 0; in sapi_isapi_register_server_variables() 655 *colon = ':'; in sapi_isapi_register_server_variables()
|
/PHP-5.5/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic6.phpt | 71 [:] => :
|
H A D | get_html_translation_table_basic5.phpt | 642 [:] => :
|
H A D | html_entity_decode_html5.phpt | 822 ":", 2956 : => : 3a
|
/PHP-5.5/ext/standard/tests/general_functions/ |
H A D | parse_ini_string_001.phpt | 11 ; Comment starts with semi-colon(;)
|
/PHP-5.5/ext/pcre/pcrelib/testdata/ |
H A D | testinput14 | 229 : # closing colon
|
H A D | testinput17 | 147 : # closing colon
|
H A D | testoutput14 | 296 : # closing colon
|
H A D | testoutput17 | 163 : # closing colon
|
H A D | testinput1 | 217 Well, we need a colon: somewhere 603 : # closing colon 3780 /^(?!:) # colon disallowed at start 3784 : # followed by colon
|
H A D | testoutput1 | 407 Well, we need a colon: somewhere 1077 : # closing colon 6174 /^(?!:) # colon disallowed at start 6178 : # followed by colon
|
/PHP-5.5/ext/standard/html_tables/ |
H A D | ents_html5.txt | 817 colon 0003A
|