Home
last modified time | relevance | path

Searched refs:colon (Results 1 – 25 of 36) sorted by relevance

12

/PHP-5.5/ext/json/tests/
H A Dfail001.phpt28 '{"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 Dwebjames.c192 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 Dzend_constants.c319 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 Dzend_execute_API.c471 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 Dzend_API.c2748 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 D011.phpt112 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 Dnetwork.c509 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 Dgmdate_variation10.phpt29 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 Dbug51094.phpt2 Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that includes a semi-colon).
H A Dparse_ini_file.phpt13 ; Comment starts with semi-colon(;)
/PHP-5.5/scripts/dev/generate-phpt/src/texts/
H A Dhelp.txt11 -s sections....................... Create optional sections, colon separated list
/PHP-5.5/main/streams/
H A Dxp_socket.c526 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 Dpdo_dbh.c208 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 Dphp5isapi.c645 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 Dget_html_translation_table_basic6.phpt71 [:] => :
H A Dget_html_translation_table_basic5.phpt642 [:] => :
H A Dhtml_entity_decode_html5.phpt822 ":",
2956 : => : 3a
/PHP-5.5/ext/standard/tests/general_functions/
H A Dparse_ini_string_001.phpt11 ; Comment starts with semi-colon(;)
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput14229 : # closing colon
H A Dtestinput17147 : # closing colon
H A Dtestoutput14296 : # closing colon
H A Dtestoutput17163 : # closing colon
H A Dtestinput1217 Well, we need a colon: somewhere
603 : # closing colon
3780 /^(?!:) # colon disallowed at start
3784 : # followed by colon
H A Dtestoutput1407 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 Dents_html5.txt817 colon 0003A

Completed in 98 milliseconds

12