Home
last modified time | relevance | path

Searched refs:dummy (Results 1 – 25 of 154) sorted by path

1234567

/php-src/Zend/Optimizer/
H A Dzend_inference.c854 double dummy; in zend_inference_calc_binary_op_range() local
863 ZEND_SIGNED_MULTIPLY_LONG(op1_min, op2_min, t1, dummy, t1_overflow); in zend_inference_calc_binary_op_range()
864 ZEND_SIGNED_MULTIPLY_LONG(op1_min, op2_max, t2, dummy, t2_overflow); in zend_inference_calc_binary_op_range()
865 ZEND_SIGNED_MULTIPLY_LONG(op1_max, op2_min, t3, dummy, t3_overflow); in zend_inference_calc_binary_op_range()
866 ZEND_SIGNED_MULTIPLY_LONG(op1_max, op2_max, t4, dummy, t4_overflow); in zend_inference_calc_binary_op_range()
867 (void) dummy; in zend_inference_calc_binary_op_range()
/php-src/Zend/tests/
H A D014.inc2 /* dummy file for 014.phpt */
H A Dbug32674.phpt44 public $dummy;
55 //$dummy = 'this will not crash';
56 $obj->dummy = 'this will crash';
H A Dbug46308.phpt7 public static $dummy = NULL ;
23 class dummy
27 main::$dummy = new dummy();
H A Dbug63055.phpt15 $dummy = array("dummy"); /* used to trigger gc_collect_cycles */
16 $dummy[1] = &$dummy;
19 $matches[2] = $dummy;
H A Dbug70089.phpt5 function dummy($a) {
H A Dbug70156.phpt19 class dummy {
32 new dummy();
35 #0 %s(%d): dummy->bar()
36 #1 %s(%d): dummy->foo1()
37 #2 %s(%d): dummy->__construct()
H A Dbug70288.phpt15 test($a->dummy);
H A Dbug71336.phpt19 $dummy = &$this->bar;
H A Dbug71914.phpt24 function test($arr, &$dummy) {
H A Dbug71930.phpt9 public static function dummy() {
15 $a[] = "dummy";
H A Dclosure_041.phpt55 $d = $nonstaticUnscoped->bindTo(new A); $d(); echo " (should be scoped to dummy class)\n";
60 $d = $nonstaticUnscoped->bindTo(new B); $d(); echo " (should be scoped to dummy class)\n";
90 bound: A (should be scoped to dummy class)
97 bound: B (should be scoped to dummy class)
H A Dclosure_042.phpt2 Closure 042: Binding an instance to a non-scoped non-static closures gives it a dummy scope
10 var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
16 var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
H A Dthis_in_foreach_002.phpt6 foreach ($a as $this => $dummy) {
/php-src/Zend/tests/offsets/
H A Dinternal_handlers_extended.phpt21 return "dummy";
/php-src/Zend/tests/try/
H A Dcatch_finally_003.phpt5 function dummy($msg) {
11 dummy("try");
16 dummy("finally");
H A Dtry_catch_finally_004.phpt7 function dummy($msg) {
15 dummy("catch");
18 dummy("finally");
21 dummy("catch2");
23 dummy("finally2");
H A Dtry_finally_006.phpt12 echo "dummy";
H A Dtry_finally_007.phpt12 echo "dummy";
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_005.phpt10 public function __construct(Dummy $dummy) {
11 $this->std = $dummy;
/php-src/Zend/
H A Dzend_execute_API.c89 original_sigsegv_handler(dummy);
1410 static void zend_timeout_handler(int dummy, siginfo_t *si, void *uc) /* {{{ */ in zend_timeout_handler() argument
1426 EG(oldact).sa_sigaction(dummy, si, uc); in zend_timeout_handler()
1430 if (EG(oldact).sa_handler) EG(oldact).sa_handler(dummy); in zend_timeout_handler()
1435 static void zend_timeout_handler(int dummy) /* {{{ */ in zend_timeout_handler()
H A Dzend_hash.c1056 zval dummy; in zend_hash_index_add_empty_element() local
1058 ZVAL_NULL(&dummy); in zend_hash_index_add_empty_element()
1059 return zend_hash_index_add(ht, h, &dummy); in zend_hash_index_add_empty_element()
1064 zval dummy; in zend_hash_add_empty_element() local
1066 ZVAL_NULL(&dummy); in zend_hash_add_empty_element()
1067 return zend_hash_add(ht, key, &dummy); in zend_hash_add_empty_element()
1072 zval dummy; in zend_hash_str_add_empty_element() local
1074 ZVAL_NULL(&dummy); in zend_hash_str_add_empty_element()
1075 return zend_hash_str_add(ht, str, len, &dummy); in zend_hash_str_add_empty_element()
H A Dzend_object_handlers.c414 const zend_property_info *dummy; in zend_wrong_offset() local
417 zend_get_property_offset(ce, member, 0, NULL, &dummy); in zend_wrong_offset()
1326 static const void *dummy = (void*)(intptr_t)2; in zend_get_call_trampoline_func() local
1346 ZEND_MAP_PTR_INIT(func->run_time_cache, (void**)dummy); in zend_get_call_trampoline_func()
/php-src/build/
H A Dconfig.guess123 dummy=$tmp/dummy
125 ,,) echo "int x;" > "$dummy.c"
127 if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
157 cat <<-EOF > "$dummy.c"
530 sed 's/^ //' << EOF > "$dummy.c"
551 $CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
639 if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
742 (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
775 sed 's/^ //' << EOF > "$dummy.c"
800 $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
[all …]
H A Dltmain.sh2296 set dummy $deplibs_check_method
2661 set dummy $library_names
3244 set dummy $vinfo 0 0 0
5940 set dummy $files
6047 set dummy $library_names

Completed in 61 milliseconds

1234567