Home
last modified time | relevance | path

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

12

/PHP-5.3/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.3/Zend/
H A Dzend_constants.c281 char *colon; in zend_get_constant_ex() local
293 if ((colon = zend_memrchr(name, ':', name_len)) && in zend_get_constant_ex()
294 colon > name && (*(colon - 1) == ':')) { in zend_get_constant_ex()
295 int class_name_len = colon - name - 1; in zend_get_constant_ex()
297 char *constant_name = colon + 1; in zend_get_constant_ex()
356 if ((colon = zend_memrchr(name, '\\', name_len)) != NULL) { in zend_get_constant_ex()
358 int prefix_len = colon - name; in zend_get_constant_ex()
360 char *constant_name = colon + 1; in zend_get_constant_ex()
H A Dzend_execute_API.c506 char *colon; in zval_update_constant_ex() local
525 if ((colon = zend_memrchr(Z_STRVAL_P(p), ':', Z_STRLEN_P(p)))) { in zval_update_constant_ex()
527 Z_STRLEN_P(p) -= ((colon - Z_STRVAL_P(p)) + 1); in zval_update_constant_ex()
529 colon = estrndup(colon, Z_STRLEN_P(p)); in zval_update_constant_ex()
531 Z_STRVAL_P(p) = colon; in zval_update_constant_ex()
533 Z_STRVAL_P(p) = colon + 1; in zval_update_constant_ex()
626 if ((colon = zend_memrchr(str_index, ':', str_index_len - 3))) { in zval_update_constant_ex()
628 str_index_len -= ((colon - str_index) + 1); in zval_update_constant_ex()
629 str_index = colon; in zval_update_constant_ex()
H A Dzend_API.c2433 char *mname, *lmname, *colon; in zend_is_callable_check_func() local
2465 if ((colon = zend_memrchr(Z_STRVAL_P(callable), ':', Z_STRLEN_P(callable))) != NULL && in zend_is_callable_check_func()
2466 colon > Z_STRVAL_P(callable) && in zend_is_callable_check_func()
2467 *(colon-1) == ':' in zend_is_callable_check_func()
2469 colon--; in zend_is_callable_check_func()
2470 clen = colon - Z_STRVAL_P(callable); in zend_is_callable_check_func()
2473 if (colon == Z_STRVAL_P(callable)) { in zend_is_callable_check_func()
H A Dzend_compile.c2573 char *colon; in zend_do_perform_implementation_check() local
2578 …(colon = zend_memrchr(fe->common.arg_info[i].class_name, '\\', fe->common.arg_info[i].class_name_l… in zend_do_perform_implementation_check()
2579 strcasecmp(colon+1, proto->common.arg_info[i].class_name) != 0) { in zend_do_perform_implementation_check()
/PHP-5.3/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.3/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.3/main/
H A Dnetwork.c501 char *colon; local
514 colon = memchr(addr + 1, ']', addrlen-1);
515 if (!colon || colon[1] != ':') {
518 port = atoi(colon + 2);
521 colon = memchr(addr, ':', addrlen);
522 if (!colon) {
525 port = atoi(colon + 1);
528 tmp = estrndup(addr, colon - addr);
/PHP-5.3/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.3/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.3/scripts/dev/generate-phpt/src/texts/
H A Dhelp.txt11 -s sections....................... Create optional sections, colon separated list
/PHP-5.3/main/streams/
H A Dxp_socket.c530 char *colon; in parse_ip_address_ex() local
550 colon = memchr(str, ':', str_len - 1); in parse_ip_address_ex()
552 colon = NULL; in parse_ip_address_ex()
554 if (colon) { in parse_ip_address_ex()
555 *portno = atoi(colon + 1); in parse_ip_address_ex()
556 host = estrndup(str, colon - str); in parse_ip_address_ex()
/PHP-5.3/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()
237 colon = strchr(data_source, ':'); in PHP_METHOD()
239 if (!colon) { in PHP_METHOD()
254 colon = strchr(data_source, ':'); in PHP_METHOD()
255 if (!colon) { in PHP_METHOD()
262 driver = pdo_find_driver(data_source, colon - data_source); in PHP_METHOD()
360 dbh->data_source_len = strlen(colon + 1); in PHP_METHOD()
361 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); in PHP_METHOD()
/PHP-5.3/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.3/ext/standard/tests/general_functions/
H A Dparse_ini_string_001.phpt11 ; Comment starts with semi-colon(;)
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c2830 char *colon; in ZEND_METHOD() local
2839 && (colon = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name))) in ZEND_METHOD()
2840 && colon > Z_STRVAL_PP(name)) in ZEND_METHOD()
4269 char *colon; in ZEND_METHOD() local
4278 && (colon = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name))) in ZEND_METHOD()
4279 && colon > Z_STRVAL_PP(name)) in ZEND_METHOD()
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestinput1215 Well, we need a colon: somewhere
601 : # closing colon
3780 /^(?!:) # colon disallowed at start
3784 : # followed by colon
H A Dtestoutput1405 Well, we need a colon: somewhere
1075 : # closing colon
6169 /^(?!:) # colon disallowed at start
6173 : # followed by colon
H A Dtestinput22883 /^(?!:) # colon disallowed at start
2887 : # followed by colon
H A Dtestinput8720 Well, we need a colon: somewhere
1084 : # closing colon
H A Dtestoutput81400 Well, we need a colon: somewhere
1991 : # closing colon
H A Dtestoutput210155 /^(?!:) # colon disallowed at start
10159 : # followed by colon
/PHP-5.3/scripts/dev/
H A Dgenerate-phpt.phar266 -s sections....................... Create optional sections, colon separated list
/PHP-5.3/ext/pcre/pcrelib/doc/
H A Dpcre.txt5556 by a ^ character after the colon. For example,
5690 by a question mark and a colon, the subpattern does not do any captur-
6258 colon in the match, and
6903 ing parenthesis immediately follows the colon, the effect is as if the
6904 colon were not there. Any number of these verbs may occur in a pattern.

Completed in 217 milliseconds

12