Home
last modified time | relevance | path

Searched refs:o1 (Results 1 – 25 of 31) sorted by relevance

12

/php-src/ext/spl/tests/
H A Dbug45826.phpt19 $o1 = unserialize($s1);
21 var_dump($o1[0] === $o1[1]);
22 var_dump($o1[2] === $o1);
32 unset($o,$x,$s1,$s2,$o1,$o2);
57 $o1 = unserialize($s1);
59 var_dump($o1[0] === $o1[1]);
60 var_dump($o1[2] === $o1);
H A Dobserver_008.phpt7 $o1 = new StdClass;
12 $a->attach($o1);
/php-src/ext/session/tests/
H A D019.phpt31 $_SESSION["o1"] = new TFoo(42);
32 $_SESSION["o2"] =& $_SESSION["o1"];
36 unset($_SESSION["o1"]);
43 $_SESSION["o1"]->inc();
52 ["o1"]=>
64 ["o1"]=>
/php-src/tests/classes/
H A Dclone_004.phpt24 $o1 = new test;
25 $o1->a = array(1,2);
26 $o1->b = array(3,4);
27 $o1->show();
30 $o2 = clone $o1;
H A Ddestructor_and_references.phpt11 $o1 = new test1;
18 $r1 = &$o1;
/php-src/ext/spl/tests/SplObjectStorage/
H A DSplObjectStorage_coalesce.phpt8 $o1 = new Stdclass;
10 var_dump($s[$o1] ?? 'default');
11 var_dump($s[$o1] ??= $i);
12 var_dump($s[$o1] ??= null);
13 var_dump($s[$o1] ??= false);
14 var_dump($s[$o1] ?? $i);
15 var_dump(isset($s[$o1]));
16 var_dump(empty($s[$o1]));
41 $a = &$s[$o1];
H A DSplObjectStorage_offsetGet.phpt9 $o1 = new stdClass();
10 $s[$o1] = 'some_value';
12 echo $s->offsetGet($o1);
H A Dbug49263.phpt5 $o1 = new stdClass;
10 $s->attach($o1, array('prev' => 2, 'next' => $o2));
11 $s->attach($o2, array('prev' => $o1));
14 unset($s,$o1,$o2);
H A DSplObjectStorage_getHash.phpt27 $o1 = new stdClass();
40 $instance[$o1] = 'foo';
41 var_dump($instance->offsetGet($o1));
42 var_dump($instance[$o1]);
44 var_dump($instance[$o1] === $instance[$o2]);
H A Dbug53144.phpt6 $o1 = new StdClass;
10 $b[$o1] = "bar";
H A DSplObjectStorage_offsetGet_missing_object.phpt9 $o1 = new stdClass();
12 $s->offsetGet($o1);
/php-src/ext/simplexml/tests/
H A Dbug63575.phpt9 $o1 = new SimpleXMlElement($xml);
10 $o2 = clone $o1;
15 echo $o1->asXML(), PHP_EOL, $o2->asXML();
/php-src/Zend/tests/
H A Dgc_044.phpt6 $o1 = new stdClass;
9 $o = $o1;
H A Dbug52614.phpt9 public $o1;
26 return $this->o1;
60 var_dump($foo->o1);
/php-src/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt6 $o1 = new stdclass;
7 $o1->p = '22';
11 $o2->x = $o1;
/php-src/ext/intl/tests/
H A Dbreakiter_factories_basic.phpt17 $o1 = IntlBreakIterator::$method('ja');
20 var_dump($o1 == $o2 && $o2 == $o3);
/php-src/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt32 $ob->o1 = new stdClass;
33 $ob->o1->o2 = new stdClass;
34 $ob->o1->o2->${f()} = g();
103 ["o1"]=>
/php-src/ext/openssl/tests/
H A Dopenssl_csr_new_array_dn_entry.phpt19 "organizationName" => ["o1" => "PHP", "o2" => "PHP Foundation"],
/php-src/Zend/asm/
H A Djump_sparc64_sysv_elf_gas.S46 # *data stored in %o1 was not modified
H A Dmake_sparc64_sysv_elf_gas.S59 # no need to setup boost_context_data, already in %o0 and %o1
/php-src/Zend/
H A Dzend_object_handlers.c1697 if (Z_TYPE_P(o1) != Z_TYPE_P(o2)) { in zend_std_compare_objects()
1703 if (Z_TYPE_P(o1) == IS_OBJECT) { in zend_std_compare_objects()
1704 object = o1; in zend_std_compare_objects()
1709 value = o1; in zend_std_compare_objects()
1734 zobj1 = Z_OBJ_P(o1); in zend_std_compare_objects()
1756 if (UNEXPECTED(Z_IS_RECURSIVE_P(o1))) { in zend_std_compare_objects()
1759 Z_PROTECT_RECURSION_P(o1); in zend_std_compare_objects()
1779 Z_UNPROTECT_RECURSION_P(o1); in zend_std_compare_objects()
1783 Z_UNPROTECT_RECURSION_P(o1); in zend_std_compare_objects()
1788 Z_UNPROTECT_RECURSION_P(o1); in zend_std_compare_objects()
[all …]
H A Dzend_object_handlers.h226 ZEND_API int zend_std_compare_objects(zval *o1, zval *o2);
234 ZEND_API int zend_objects_not_comparable(zval *o1, zval *o2);
/php-src/ext/spl/
H A Dspl_observer.c384 static int spl_object_storage_compare_objects(zval *o1, zval *o2) /* {{{ */ in spl_object_storage_compare_objects() argument
389 ZEND_COMPARE_OBJECTS_FALLBACK(o1, o2); in spl_object_storage_compare_objects()
391 zo1 = (zend_object *)Z_OBJ_P(o1); in spl_object_storage_compare_objects()
398 …return zend_hash_compare(&(Z_SPLOBJSTORAGE_P(o1))->storage, &(Z_SPLOBJSTORAGE_P(o2))->storage, (co… in spl_object_storage_compare_objects()
/php-src/ext/opcache/jit/ir/
H A Dir_emit.c259 int32_t o1; in ir_is_same_mem_var() local
268 o1 = ival1->stack_spill_pos; in ir_is_same_mem_var()
269 IR_ASSERT(o1 != -1); in ir_is_same_mem_var()
270 return o1 == offset; in ir_is_same_mem_var()
/php-src/ext/date/
H A Dphp_date.c1891 php_date_obj *o1; in date_object_compare_date() local
1896 o1 = Z_PHPDATE_P(d1); in date_object_compare_date()
1899 if (!o1->time || !o2->time) { in date_object_compare_date()
1903 if (!o1->time->sse_uptodate) { in date_object_compare_date()
1904 timelib_update_ts(o1->time, o1->time->tz_info); in date_object_compare_date()
2032 php_timezone_obj *o1, *o2; in date_object_compare_timezone() local
2036 o1 = Z_PHPTIMEZONE_P(tz1); in date_object_compare_timezone()
2039 if (!o1->initialized || !o2->initialized) { in date_object_compare_timezone()
2044 if (o1->type != o2->type) { in date_object_compare_timezone()
2049 switch (o1->type) { in date_object_compare_timezone()
[all …]

Completed in 61 milliseconds

12