Home
last modified time | relevance | path

Searched refs:ex (Results 26 – 50 of 57) sorted by relevance

123

/PHP-5.5/Zend/tests/
H A Dbug40815.phpt7 static public function exh ($ex) {
H A Dcatch_finally_001.phpt9 throw new Exception("ex");
H A Dcatch_finally_006.phpt7 throw new Exception("ex");
H A Dcatch_finally_003.phpt25 throw new Exception("ex");
/PHP-5.5/Zend/
H A Dzend_exceptions.c35 ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC);
825 zval *ex; in zend_throw_exception() local
827 MAKE_STD_ZVAL(ex); in zend_throw_exception()
836 object_init_ex(ex, exception_ce); in zend_throw_exception()
840 …zend_update_property_string(default_exception_ce, ex, "message", sizeof("message")-1, message TSRM… in zend_throw_exception()
843 zend_update_property_long(default_exception_ce, ex, "code", sizeof("code")-1, code TSRMLS_CC); in zend_throw_exception()
846 zend_throw_exception_internal(ex TSRMLS_CC); in zend_throw_exception()
847 return ex; in zend_throw_exception()
868 zval *ex = zend_throw_exception(exception_ce, message, code TSRMLS_CC); in zend_throw_error_exception() local
869 …zend_update_property_long(default_exception_ce, ex, "severity", sizeof("severity")-1, severity TSR… in zend_throw_error_exception()
[all …]
H A Dzend_exceptions.h50 extern ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC);
H A Dzend_closures.c244 zend_execute_data *ex = EG(current_execute_data); in zend_closure_free_storage() local
245 while (ex) { in zend_closure_free_storage()
246 if (ex->op_array == &closure->func.op_array) { in zend_closure_free_storage()
249 ex = ex->prev_execute_data; in zend_closure_free_storage()
H A Dzend_builtin_functions.c393 zend_execute_data *ex = EG(current_execute_data)->prev_execute_data; in ZEND_FUNCTION() local
395 if (ex && ex->function_state.arguments) { in ZEND_FUNCTION()
396 RETURN_LONG((long)(zend_uintptr_t)*(ex->function_state.arguments)); in ZEND_FUNCTION()
413 zend_execute_data *ex = EG(current_execute_data)->prev_execute_data; in ZEND_FUNCTION() local
424 if (!ex || !ex->function_state.arguments) { in ZEND_FUNCTION()
429 p = ex->function_state.arguments; in ZEND_FUNCTION()
452 zend_execute_data *ex = EG(current_execute_data)->prev_execute_data; in ZEND_FUNCTION() local
454 if (!ex || !ex->function_state.arguments) { in ZEND_FUNCTION()
459 p = ex->function_state.arguments; in ZEND_FUNCTION()
H A Dzend_compile.h404 #define EX_TMP_VAR(ex, n) ((temp_variable*)(((char*)(ex)) + ((int)(n)))) argument
405 #define EX_TMP_VAR_NUM(ex, n) (EX_TMP_VAR(ex, 0) - (1 + (n))) argument
407 #define EX_CV_NUM(ex, n) (((zval***)(((char*)(ex))+ZEND_MM_ALIGNED_SIZE(sizeof(zend_execute_d… argument
H A Dzend_execute.c53 #define get_zval_ptr(op_type, node, ex, should_free, type) _get_zval_ptr(op_type, node, ex, should_… argument
54 #define get_zval_ptr_ptr(op_type, node, ex, should_free, type) _get_zval_ptr_ptr(op_type, node, ex,… argument
55 #define get_obj_zval_ptr(op_type, node, ex, should_free, type) _get_obj_zval_ptr(op_type, node, ex,… argument
56 #define get_obj_zval_ptr_ptr(op_type, node, ex, should_free, type) _get_obj_zval_ptr_ptr(op_type, n… argument
H A DZEND_CHANGES609 function display_exception(Exception $ex)
611 echo 'Exception: ' . $ex->getMessage() . 'with backtrace: <pre>';
612 echo $ex->getTrace();
620 catch (Exception $ex)
622 display_exeption($ex);
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY126 (ex. "S" -> "s" -> 0x017f)
322 ex. /(?<!(?<=a)b|c)d/
425 ex. core dump in
453 ex. /^\t.*$/
821 ex. /[\xFF-\xFF]/u
941 ex. /[^a]/i.match("A")
1262 ex. /\x61/i =~ "A"
1423 ex. /(a+)*(?<name>...)/
1580 ex. /]aaa/
1756 ex. /[\x58-\x64]/i
[all …]
H A Dregcomp.c4179 is_full_opt_exact_info(OptExactInfo* ex) in is_full_opt_exact_info() argument
4181 return (ex->len >= OPT_EXACT_MAXLEN ? 1 : 0); in is_full_opt_exact_info()
4185 clear_opt_exact_info(OptExactInfo* ex) in clear_opt_exact_info() argument
4187 clear_mml(&ex->mmd); in clear_opt_exact_info()
4188 clear_opt_anc_info(&ex->anc); in clear_opt_exact_info()
4189 ex->reach_end = 0; in clear_opt_exact_info()
4190 ex->ignore_case = 0; in clear_opt_exact_info()
4191 ex->len = 0; in clear_opt_exact_info()
4192 ex->s[0] = '\0'; in clear_opt_exact_info()
/PHP-5.5/ext/standard/tests/file/
H A Dbug40501.phpt17 backslashes (ex: 1)\"
/PHP-5.5/ext/xml/tests/
H A Dbug30266.phpt36 throw new Exception("ex");
/PHP-5.5/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.5/ext/pcre/pcrelib/testdata/
H A Dgrepinput34 …ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat…
H A Dgrepoutput650 …ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat…
730 …ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat…
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug30045.phpt48 } catch (SoapFault $ex) {
49 var_dump($ex);
/PHP-5.5/ext/soap/interop/
H A Dclient_round2_interop.php370 } catch (SoapFault $ex) {
371 $endpoint_info['client']->wsdl->fault = $ex;
436 } catch (SoapFault $ex) {
437 $return = $ex;
/PHP-5.5/ext/phar/tests/
H A Dbug65028.phpt144 catch(UnexpectedValueException $ex)
146 echo "Exception thrown: " . $ex->getMessage() . "\n";
/PHP-5.5/ext/pdo_odbc/tests/
H A Dlong_columns.phpt33 // 5. enter a DSN, ex: accdb12
36 // 7. set the environment variable PDOTEST_DSN="odbc:<system dsn from step 5>" ex: SET PDOTEST_DSN=…
/PHP-5.5/ext/mbstring/
H A DREADME_PHP3-i18n-ja138 (ex. /usr/local/lib/php3.ini)
215 ex.
226 ex. Content-Type: text/html; charset="..."
387 ex. $str = urlencode( i18n_convert($str, i18n_http_output()) );
699 ex: <a href="hoge.php?data=<? echo urlencode($data) ?>">Link</a>
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DAPI302 (ex. /(?<x>..)(?<x>..)/ ==> 2)
600 Return version string. (ex. "5.0.3")
/PHP-5.5/ext/bcmath/libbcmath/
H A Dconfigure123 | --exec | --exe | --ex)
127 | --exec=* | --exe=* | --ex=*)

Completed in 111 milliseconds

123