Home
last modified time | relevance | path

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

12

/PHP-5.5/
H A DNEWS2812 includes a semi-colon). (Pierrick)
/PHP-5.5/Zend/
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()
H A Dzend_compile.c3189 const char *colon; in zend_do_perform_implementation_check() local
3194 (colon = zend_memrchr(fe_class_name, '\\', fe_class_name_len)) == NULL || in zend_do_perform_implementation_check()
3195 strcasecmp(colon+1, proto_class_name) != 0) { in zend_do_perform_implementation_check()
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()
/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/fileinfo/tests/
H A Dmagic8149 # .cvd files start with a 512 bytes colon separated header
/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/ext/pcre/pcrelib/
H A DChangeLog3533 the first matched character to be a colon. This applied both to named and
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt5897 by a ^ character after the colon. For example,
6072 by a question mark and a colon, the subpattern does not do any captur-
6651 colon in the match, and
7287 closing parenthesis immediately follows the colon, the effect is as if
7288 the colon were not there. Any number of these verbs may occur in a
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput1217 Well, we need a colon: somewhere
603 : # closing colon
3780 /^(?!:) # colon disallowed at start
3784 : # followed by colon
H A Dtestinput14229 : # closing colon
H A Dtestinput17147 : # closing colon
H A Dtestinput22894 /^(?!:) # colon disallowed at start
2898 : # followed by colon
H A Dtestinput8723 Well, we need a colon: somewhere
1087 : # closing colon
H A Dtestoutput1407 Well, we need a colon: somewhere
1077 : # closing colon
6174 /^(?!:) # colon disallowed at start
6178 : # followed by colon
H A Dtestoutput14296 : # closing colon
H A Dtestoutput17163 : # closing colon
H A Dtestoutput210236 /^(?!:) # colon disallowed at start
10240 : # followed by colon
H A Dtestoutput81375 Well, we need a colon: somewhere
1932 : # closing colon
/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/ext/standard/html_tables/
H A Dents_html5.txt817 colon 0003A
/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/ext/standard/tests/general_functions/
H A Dparse_ini_string_001.phpt11 ; Comment starts with semi-colon(;)

Completed in 272 milliseconds

12