Home
last modified time | relevance | path

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

123

/PHP-5.5/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.5/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.5/Zend/tests/
H A Dcatch_finally_004.phpt10 function foo (&$ex) {
24 $ex = $e;
32 var_dump(foo($ex));
35 var_dump($ex->getMessage());
36 } while ($ex = $ex->getPrevious());
H A Dtry_catch_finally_006.phpt7 function foo($ex = NULL) {
13 if ($ex) throw $ex;
17 if ($ex) return "return1";
H A Dbug52361.phpt9 } catch(Exception $ex) {
10 echo "1. $ex\n";
21 } catch(Exception $ex) {
22 echo "2. $ex\n";
H A Dtry_finally_001.phpt7 throw new Exception("ex");
18 Fatal error: Uncaught exception 'Exception' with message 'ex' %s
H A Dtry_finally_003.phpt10 throw new Exception("ex");
23 Fatal error: Uncaught exception 'Exception' with message 'ex' %s
H A Dtry_finally_010.phpt13 } catch (MyEx $ex) {
25 } catch (Exception $ex) {
H A Dns_055.phpt20 $ex = new \Exception();
23 $foo->test3($ex);
H A Dbug44184.phpt16 } catch (Exception $ex) {
H A Dcatch_finally_005.phpt7 throw new Exception("ex");
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format_simple_types_numeric_strings.phpt29 $ex = "1336317965.5 str";
31 'a' => $ex,
32 'b' => $ex,
33 'c' => $ex,
34 'd' => $ex,
35 'e' => $ex,
38 'h' => $ex,
39 'i' => $ex,
40 'j' => $ex,
/PHP-5.5/Zend/
H A Dzend_execute_API.c1600 for (ex = EG(current_execute_data); ex; ex = ex->prev_execute_data) { in zend_reset_all_cv()
1601 if (ex->op_array && ex->symbol_table == symbol_table) { in zend_reset_all_cv()
1614 while (ex && ex->symbol_table == ht) { in zend_delete_variable()
1617 if (ex->op_array) { in zend_delete_variable()
1627 ex = ex->prev_execute_data; in zend_delete_variable()
1638 for (ex = EG(current_execute_data); ex; ex = ex->prev_execute_data) { in zend_delete_global_variable_ex()
1639 if (ex->op_array && ex->symbol_table == &EG(symbol_table)) { in zend_delete_global_variable_ex()
1673 while (ex && !ex->op_array) { in zend_rebuild_symbol_table()
1674 ex = ex->prev_execute_data; in zend_rebuild_symbol_table()
1676 if (ex && ex->symbol_table) { in zend_rebuild_symbol_table()
[all …]
H A Dzend_execute.h254 static zend_always_inline void** zend_vm_stack_frame_base(zend_execute_data *ex) in zend_vm_stack_frame_base() argument
256 return (void**)((char*)ex->call_slots + in zend_vm_stack_frame_base()
257 ZEND_MM_ALIGNED_SIZE(sizeof(call_slot)) * ex->op_array->nested_calls); in zend_vm_stack_frame_base()
307 static zend_always_inline int zend_vm_stack_get_args_count_ex(zend_execute_data *ex) in zend_vm_stack_get_args_count_ex() argument
309 if (ex) { in zend_vm_stack_get_args_count_ex()
310 void **p = ex->function_state.arguments; in zend_vm_stack_get_args_count_ex()
317 static zend_always_inline zval** zend_vm_stack_get_arg_ex(zend_execute_data *ex, int requested_arg) in zend_vm_stack_get_arg_ex() argument
319 void **p = ex->function_state.arguments; in zend_vm_stack_get_arg_ex()
H A Dzend_generators.c170 zend_execute_data *ex = generator->execute_data; in zend_generator_dtor_storage() local
174 if (!ex || !ex->op_array->has_finally_block) { in zend_generator_dtor_storage()
180 op_num = ex->opline - ex->op_array->opcodes - 1; in zend_generator_dtor_storage()
184 for (i = 0; i < ex->op_array->last_try_catch; i++) { in zend_generator_dtor_storage()
185 zend_try_catch_element *try_catch = &ex->op_array->try_catch_array[i]; in zend_generator_dtor_storage()
199 ex->opline = &ex->op_array->opcodes[finally_op_num]; in zend_generator_dtor_storage()
200 ex->fast_ret = NULL; in zend_generator_dtor_storage()
/PHP-5.5/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.5/ext/soap/tests/bugs/
H A Dbug36999.phpt42 } catch (SoapFault $ex) {
43 var_dump($ex);
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DRE134 ex. /a*+/ === /(?>a*)/
280 ex 1.
284 ex 2.
309 ex. (?<name>a|\g<name>b) => error
318 ex. (?-i:\g<name>)(?i:(?<name>a)){0} match to "A"
396 (ex. [\xa1\xa2], [\xa1\xa7-\xa4\xa1])
403 ex. a(?i)* is a syntax error pattern.
405 ex. /{/, /({)/, /a{2,3/ etc...
409 ex. /(?=a)*/, /(?!b){5}/
411 ex. /\x61/i =~ "A"
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dbug40501.csv2 backslashes (ex: 1)\",and it isn't the last element$

Completed in 76 milliseconds

123