Home
last modified time | relevance | path

Searched refs:closing (Results 76 – 100 of 151) sorted by relevance

1234567

/PHP-8.1/ext/pcre/tests/
H A Dpreg_match_error1.phpt11 '/[a-zA-Z]', //Regex without closing delimiter
H A Dpreg_match_all_error1.phpt13 '/[a-zA-Z]', //Regex without closing delimiter
/PHP-8.1/ext/sockets/tests/
H A Dsocket_import_stream-4-win.phpt2 socket_import_stream: effects of closing
H A Dsocket_import_stream-4.phpt2 socket_import_stream: effects of closing
H A Dsocket_export_stream-4.phpt2 socket_export_stream: effects of closing
H A Dsocket_export_stream-4-win.phpt2 socket_export_stream: effects of closing
/PHP-8.1/ext/standard/tests/strings/
H A Dstrtr_variation6.phpt75 fclose($file_handle); //closing the file handle
H A Dstrtr_variation8.phpt73 fclose($file_handle); //closing the file handle
H A Dprintf_variation2.phpt99 // closing the resource
/PHP-8.1/ext/standard/tests/general_functions/
H A Dis_callable_variation2.phpt47 /* closing resources used */
H A Ddebug_zval_dump_b.phpt90 /* closing resource handle */
H A Ddebug_zval_dump_b_64bit.phpt94 /* closing resource handle */
/PHP-8.1/ext/standard/tests/array/
H A Darray_flip_variation4.phpt52 // closing resource
/PHP-8.1/ext/standard/tests/file/
H A Dfscanf_variation13.phpt35 // closing the file
H A Dfscanf_variation19.phpt39 // closing the file
H A Dfscanf_variation25.phpt39 // closing the file
H A Dfscanf_variation32.phpt40 // closing the file
H A Dfscanf_variation38.phpt35 // closing the file
H A Dfscanf_variation44.phpt35 // closing the file
H A Dfscanf_variation7.phpt35 // closing the file
H A Dfscanf_variation50.phpt35 // closing the file
H A Dfscanf_variation52.phpt32 //closing the file
H A Dfscanf_variation26.phpt34 // closing the file
/PHP-8.1/ext/standard/
H A Duser_filters.c44 bool closing; in PHP_METHOD() local
45 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rrzb", &in, &out, &consumed, &closing) == FAILURE) { in PHP_METHOD()
/PHP-8.1/Zend/
H A Dzend_language_scanner.l1232 static void report_bad_nesting(char opening, int opening_lineno, char closing) in report_bad_nesting() argument
1243 if (closing) { /* 'closing' will be 0 if at end of file */ in report_bad_nesting()
1244 used += snprintf(buf + used, sizeof(buf) - used, " does not match '%c'", closing); in report_bad_nesting()
1256 static zend_result exit_nesting(char closing) in exit_nesting() argument
1259 zend_throw_exception_ex(zend_ce_parse_error, 0, "Unmatched '%c'", closing); in exit_nesting()
1266 if ((opening == '{' && closing != '}') || in exit_nesting()
1267 (opening == '[' && closing != ']') || in exit_nesting()
1268 (opening == '(' && closing != ')')) { in exit_nesting()
1269 report_bad_nesting(opening, nest_loc->lineno, closing); in exit_nesting()

Completed in 32 milliseconds

1234567