Home
last modified time | relevance | path

Searched refs:ex (Results 76 – 100 of 185) sorted by relevance

12345678

/php-src/Zend/tests/try/
H A Dtry_finally_010.phpt13 } catch (MyEx $ex) {
25 } catch (Exception $ex) {
/php-src/Zend/tests/type_declarations/
H A Dinexistent_class_hint_with_scalar_arg.phpt6 function foo(bar $ex) {}
11 Fatal error: Uncaught TypeError: foo(): Argument #1 ($ex) must be of type bar, null given, called i…
/php-src/ext/spl/tests/
H A Dbug70561.phpt16 } catch (OutOfBoundsException $ex) {
17 echo $ex->getMessage() . PHP_EOL;
/php-src/ext/calendar/tests/
H A Deaster_date_checks_upper_bound_32bit.phpt16 } catch (ValueError $ex) {
17 echo "{$ex->getMessage()}\n";
H A Deaster_date_checks_upper_bound_64bit.phpt16 } catch (ValueError $ex) {
17 echo "{$ex->getMessage()}\n";
H A Dunixtojd_error1.phpt15 } catch (ValueError $ex) {
16 echo $ex->getMessage(), PHP_EOL;
H A Deaster_date_32bit.phpt19 } catch (ValueError $ex) {
20 echo "{$ex->getMessage()}\n";
/php-src/tests/lang/
H A Dcatchable_error_002.phpt22 } catch (Error $ex) {
23 echo $ex->getMessage(), "\n";
/php-src/Zend/tests/
H A Dns_055.phpt20 $ex = new \Exception();
23 $foo->test3($ex);
H A Ddynamic_prop_deprecation_002.phpt12 } catch (Throwable $ex) {
13 echo "Exception: " .$ex->getMessage() . "\n";
/php-src/ext/sqlite3/tests/
H A Dsqlite3_33_load_extension_param.phpt23 } catch (\Throwable $ex) {
24 var_dump($ex->getMessage());
H A Dsqlite3_34_load_extension_ext_dir.phpt21 } catch (Extension $ex) {
22 var_dump($ex->getMessage());
H A Dgh9032.phpt20 } catch (SQLite3Exception $ex) {
21 echo $ex->getMessage(), PHP_EOL;
/php-src/ext/opcache/tests/
H A Dpreload_012.phpt21 } catch (Throwable $ex) {
22 echo $ex->getMessage() . "\n";
H A Dpreload_004.phpt19 } catch (Throwable $ex) {
20 echo $ex->getMessage() . "\n";
H A Dpreload_009.phpt20 } catch (Throwable $ex) {
21 echo $ex->getMessage() . "\n";
/php-src/ext/gd/tests/
H A Dgh8848.phpt20 } catch (ValueError $ex) {
21 echo $ex->getMessage(), PHP_EOL;
/php-src/ext/ftp/tests/
H A Ddead-resource.phpt18 } catch (ValueError $ex) {
19 echo "Exception: ", $ex->getMessage(), "\n";
/php-src/Zend/tests/array_unpack/
H A Dclasses.phpt22 } catch (Error $ex) {
23 echo "Exception: " . $ex->getMessage() . "\n";
/php-src/ext/ffi/tests/
H A Dbug78761.phpt18 } catch (FFI\Exception $ex) {
19 echo $ex->getMessage(), PHP_EOL;
H A Dbug78270_2.phpt15 } catch (FFI\ParserException $ex) {
36 } catch (FFI\ParserException $ex) {
40 } catch (FFI\Exception $ex) {
/php-src/ext/pdo_sqlite/tests/
H A Dgh9032.phpt18 } catch (PDOException $ex) {
19 echo $ex->getMessage(), PHP_EOL;
/php-src/ext/intl/tests/
H A Dbug48227.phpt12 } catch (TypeError $ex) {
13 echo $ex->getMessage(), PHP_EOL;
/php-src/ext/fileinfo/tests/
H A Dfinfo_open_004.phpt15 } catch (\Exception $ex) {
16 echo "TEST:" . $ex->getMessage() . PHP_EOL;
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.h452 unsigned char *ex = cp - (t&7); in dasm_encode() local
454 if (*ex & 0x80) ex[1] ^= 0x20 << (t>>6); else *ex ^= 1 << (t>>6); in dasm_encode()
457 if (*ex & 0x80) { in dasm_encode()
458 *ex = 0xc5; ex[1] = (ex[1] & 0x80) | ex[2]; ex += 2; in dasm_encode()
460 while (++ex < cp) ex[-1] = *ex; in dasm_encode()

Completed in 22 milliseconds

12345678