Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 42) sorted by relevance

12

/PHP-5.3/ext/mbstring/libmbfl/tests/conv_kana.tests/
H A Dconv_kana.exp36 -ex "%a1%a1%20 (3)\r\n" { pass $test }
75 -ex "%a1%a1%20 (3)\r\n" { pass $test }
122 -ex "%a1%a1%20 (3)\r\n" { pass $test }
169 -ex "%a1%a1%20 (3)\r\n" { pass $test }
216 -ex "%a1%a1%20 (3)\r\n" { pass $test }
263 -ex "%a1%a1%20 (3)\r\n" { pass $test }
310 -ex "%a1%a1%20 (3)\r\n" { pass $test }
357 -ex "%a1%a1%20 (3)\r\n" { pass $test }
439 -ex "%a1%a1%20 (3)\r\n" { pass $test }
486 -ex "%20%20 (2)\r\n" { pass $test }
[all …]
/PHP-5.3/ext/mbstring/libmbfl/tests/strcut.tests/
H A Diso2022jp.exp20 -ex "***ERROR***\r\n" { pass $test }
27 -ex "***ERROR***\r\n" { pass $test }
36 -ex "***ERROR***\r\n" { pass $test }
43 -ex "***ERROR***\r\n" { pass $test }
52 -ex "%74%74 (2)\r\n" { pass $test }
59 -ex " (0)\r\n" { pass $test }
68 -ex "%65%73%74 (3)\r\n" { pass $test }
76 -ex "%1b%24%42%25%39%1b%28%42 (8)\r\n" { pass $test }
92 -ex "%1b%24%42%25%46%25%39%25%48%25%46%1b%28%42 (14)\r\n" { pass $test }
101 -ex "%74%1b%24%42%25%39%1b%28%42%74%1b%24%42%25%48%24%46%1b%28%42 (20)\r\n" {
[all …]
H A Dujis.exp20 -ex "***ERROR***\r\n" { pass $test }
26 -ex "***ERROR***\r\n" { pass $test }
35 -ex "***ERROR***\r\n" { pass $test }
41 -ex "***ERROR***\r\n" { pass $test }
50 -ex "%74%74 (2)\r\n" { pass $test }
56 -ex "%a5%b9 (2)\r\n" { pass $test }
65 -ex "%65%73%74 (3)\r\n" { pass $test }
71 -ex "%a5%c8%a5%c6%a5%b9%a5%c8 (8)\r\n" { pass $test }
86 -ex "%a5%c6%a5%b9%a5%c8%a5%c6%a5%b9%a5%c8 (12)\r\n" { pass $test }
H A Dutf8.exp20 -ex "***ERROR***\r\n" { pass $test }
26 -ex "***ERROR***\r\n" { pass $test }
35 -ex "***ERROR***\r\n" { pass $test }
41 -ex "***ERROR***\r\n" { pass $test }
50 -ex "%74%74 (2)\r\n" { pass $test }
56 -ex "(0)\r\n" { pass $test }
65 -ex "%65%73%74 (3)\r\n" { pass $test }
71 -ex "%e3%82%b9%e3%83%88 (6)\r\n" { pass $test }
86 -ex "%e3%83%86%e3%82%b9%e3%83%88%e3%83%86%e3%82%b9 (15)\r\n" { pass $test }
/PHP-5.3/Zend/tests/
H A Dbug52361.phpt9 } catch(Exception $ex) {
10 echo "1. $ex\n";
21 } catch(Exception $ex) {
22 echo "2. $ex\n";
H A Dns_055.phpt20 $ex = new \Exception();
23 $foo->test3($ex);
H A Dbug44184.phpt16 } catch (Exception $ex) {
H A Dbug40815.phpt7 static public function exh ($ex) {
/PHP-5.3/Zend/
H A Dzend_execute_API.c1644 for (ex = EG(current_execute_data); ex; ex = ex->prev_execute_data) { in zend_reset_all_cv()
1645 if (ex->op_array && ex->symbol_table == symbol_table) { in zend_reset_all_cv()
1660 for (ex = EG(current_execute_data); ex; ex = ex->prev_execute_data) { in zend_delete_global_variable()
1661 if (ex->op_array && ex->symbol_table == &EG(symbol_table)) { in zend_delete_global_variable()
1689 while (ex && !ex->op_array) { in zend_rebuild_symbol_table()
1690 ex = ex->prev_execute_data; in zend_rebuild_symbol_table()
1692 if (ex && ex->symbol_table) { in zend_rebuild_symbol_table()
1697 if (ex && ex->op_array) { in zend_rebuild_symbol_table()
1709 !ex->CVs[ex->op_array->this_var] && in zend_rebuild_symbol_table()
1711ex->CVs[ex->op_array->this_var] = (zval**)ex->CVs + ex->op_array->last_var + ex->op_array->this_va… in zend_rebuild_symbol_table()
[all …]
H A Dzend_exceptions.c34 ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC);
723 zval *ex; in zend_throw_exception() local
725 MAKE_STD_ZVAL(ex); in zend_throw_exception()
734 object_init_ex(ex, exception_ce); in zend_throw_exception()
738 …zend_update_property_string(default_exception_ce, ex, "message", sizeof("message")-1, message TSRM… in zend_throw_exception()
741 zend_update_property_long(default_exception_ce, ex, "code", sizeof("code")-1, code TSRMLS_CC); in zend_throw_exception()
744 zend_throw_exception_internal(ex TSRMLS_CC); in zend_throw_exception()
745 return ex; in zend_throw_exception()
766 zval *ex = zend_throw_exception(exception_ce, message, code TSRMLS_CC); in zend_throw_error_exception() local
767 …zend_update_property_long(default_exception_ce, ex, "severity", sizeof("severity")-1, severity TSR… in zend_throw_error_exception()
[all …]
H A Dzend_closures.c175 zend_execute_data *ex = EG(current_execute_data); in zend_closure_free_storage() local
176 while (ex) { in zend_closure_free_storage()
177 if (ex->op_array == &closure->func.op_array) { in zend_closure_free_storage()
180 ex = ex->prev_execute_data; in zend_closure_free_storage()
H A Dzend_exceptions.h50 extern ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC);
/PHP-5.3/ext/sqlite3/tests/
H A Dsqlite3_34_load_extension_ext_dir.phpt15 } catch (Extension $ex) {
16 var_dump($ex->getMessage());
H A Dsqlite3_31_open.phpt14 } catch (Exception $ex) {
15 var_dump($ex->getMessage());
H A Dsqlite3_33_load_extension_param.phpt17 } catch (Extension $ex) {
18 var_dump($ex->getMessage());
H A Dsqlite3_32_last_insert_rowid_param.phpt22 } catch (Exception $ex) {
23 var_dump($ex->getMessage());
H A Dsqlite3stmt_reset_params.phpt26 } catch (Exception $ex) {
27 var_dump($ex->getMessage());
/PHP-5.3/ext/mbstring/oniguruma/doc/
H A DRE102 ex. /a*+/ === /(?>a*)/
237 ex 1.
241 ex 2.
262 ex. (?<name>a|\g<name>b) => error
271 ex. (?-i:\g<name>)(?i:(?<name>a)){0} match to "A"
343 ex. \p{IsXDigit}.
361 (ex. [\xa1\xa2], [\xa1\xa7-\xa4\xa1])
368 ex. a(?i)* is a syntax error pattern.
370 ex. /{/, /({)/, /a{2,3/ etc...
374 ex. /(?=a)*/, /(?!b){5}/
[all …]
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug36999.phpt42 } catch (SoapFault $ex) {
43 var_dump($ex);
H A Dbug30045.phpt48 } catch (SoapFault $ex) {
49 var_dump($ex);
/PHP-5.3/ext/standard/tests/file/
H A Dbug40501.csv2 backslashes (ex: 1)\",and it isn't the last element$
H A Dbug40501.phpt17 backslashes (ex: 1)\"
/PHP-5.3/ext/mbstring/oniguruma/
H A DHISTORY117 ex. /(?<!(?<=a)b|c)d/
178 ex. /(?!\G)a\z/.match("ba")
220 ex. core dump in
248 ex. /^\t.*$/
616 ex. /[\xFF-\xFF]/u
736 ex. /[^a]/i.match("A")
1057 ex. /\x61/i =~ "A"
1218 ex. /(a+)*(?<name>...)/
1375 ex. /]aaa/
1551 ex. /[\x58-\x64]/i
[all …]
/PHP-5.3/ext/pdo/
H A Dpdo_dbh.c77 zval *ex, *info; in pdo_raise_impl_error() local
80 MAKE_STD_ZVAL(ex); in pdo_raise_impl_error()
81 object_init_ex(ex, pdo_ex); in pdo_raise_impl_error()
84 zend_update_property_string(def_ex, ex, "code", sizeof("code")-1, *pdo_err TSRMLS_CC); in pdo_raise_impl_error()
92 zend_update_property(pdo_ex, ex, "errorInfo", sizeof("errorInfo")-1, info TSRMLS_CC); in pdo_raise_impl_error()
95 zend_throw_exception_object(ex TSRMLS_CC); in pdo_raise_impl_error()
155 zval *ex; in pdo_handle_error() local
158 MAKE_STD_ZVAL(ex); in pdo_handle_error()
159 object_init_ex(ex, pdo_ex); in pdo_handle_error()
162 zend_update_property_string(def_ex, ex, "code", sizeof("code")-1, *pdo_err TSRMLS_CC); in pdo_handle_error()
[all …]
/PHP-5.3/ext/xml/tests/
H A Dbug30266.phpt36 throw new Exception("ex");

Completed in 79 milliseconds

12