Searched refs:WeakReference (Results 1 – 25 of 28) sorted by relevance
12
/php-src/Zend/tests/weakrefs/ |
H A D | weakrefs_005.phpt | 2 WeakReference no __construct 5 new WeakReference(); 8 Fatal error: Uncaught Error: Direct instantiation of WeakReference is not allowed, use WeakReferenc… 10 #0 %s(2): WeakReference->__construct()
|
H A D | weakrefs_002.phpt | 2 WeakReference serials 5 $wr = WeakReference::create(new stdClass); 13 $wrs = 'O:13:"WeakReference":0:{}'; 22 string(47) "Serialization of 'WeakReference' is not allowed" 23 string(49) "Unserialization of 'WeakReference' is not allowed"
|
H A D | weakrefs_001.phpt | 2 WeakReference 9 $wr = WeakReference::create($std); 10 $wr2 = WeakReference::create($std); 29 object(WeakReference)#2 (1) { 34 object(WeakReference)#2 (1) {
|
H A D | weakrefs_003.phpt | 2 WeakReference object handlers 5 $wr = WeakReference::create(new stdClass); 24 Warning: Undefined property: WeakReference::$disallow in %s on line %d 27 string(55) "Cannot create dynamic property WeakReference::$disallow" 28 string(57) "Cannot create dynamic property WeakReference::$disallowed"
|
H A D | weakrefs_004.phpt | 2 WeakReference no inheritance 5 class Test extends WeakReference {} 8 Fatal error: Class Test cannot extend final class WeakReference in %s on line %d
|
H A D | weakrefs_debug_dump.phpt | 9 $weak = WeakReference::create($s); 16 object(WeakReference)#2 (1) { 23 object(WeakReference)#2 (1) {
|
H A D | weakmap_multiple_weakrefs.phpt | 8 $ref = WeakReference::create($obj); 15 var_dump($ref === WeakReference::create($obj)); 22 $ref = WeakReference::create($obj);
|
H A D | gh13612.phpt | 14 private \WeakReference $weakAnalysingMap; 18 $this->weakAnalysingMap = \WeakReference::create($analysingMap);
|
H A D | gh10043-015.phpt | 14 $ref = WeakReference::create($map);
|
H A D | gh10043-009.phpt | 18 $ref = WeakReference::create($map);
|
H A D | gh10043-012.phpt | 23 $ref = WeakReference::create($map);
|
H A D | notify.phpt | 17 $ref = WeakReference::create($instance);
|
H A D | gh10043-003.phpt | 14 $ref = WeakReference::create($map);
|
H A D | gh10043-004.phpt | 14 $ref = WeakReference::create($map);
|
/php-src/Zend/ |
H A D | zend_weakrefs_arginfo.h | 7 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_class_WeakReference_create, 0, 1, WeakReference, 0) 37 ZEND_METHOD(WeakReference, __construct); 38 ZEND_METHOD(WeakReference, create); 39 ZEND_METHOD(WeakReference, get); 48 ZEND_ME(WeakReference, __construct, arginfo_class_WeakReference___construct, ZEND_ACC_PUBLIC) 49 ZEND_ME(WeakReference, create, arginfo_class_WeakReference_create, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC) 50 ZEND_ME(WeakReference, get, arginfo_class_WeakReference_get, ZEND_ACC_PUBLIC)
|
H A D | zend_weakrefs.stub.php | 9 final class WeakReference class 13 public static function create(object $object): WeakReference {}
|
/php-src/ext/ffi/tests/ |
H A D | weak_reference_002.phpt | 15 $ref_value = \WeakReference::create($cdata_value); 16 $ref_array = \WeakReference::create($cdata_array); 17 $ref_free = \WeakReference::create($cdata_free);
|
H A D | weak_reference_001.phpt | 10 $ref = \WeakReference::create($ffi);
|
H A D | weak_reference_003.phpt | 10 $ref = \WeakReference::create($ctype);
|
/php-src/Zend/tests/fibers/ |
H A D | destructors_005.phpt | 35 $refs[] = WeakReference::create(new Cycle(0)); 36 $refs[] = WeakReference::create(new Cycle(1)); 37 $refs[] = WeakReference::create(new Cycle(2));
|
H A D | destructors_009.phpt | 25 $weakRef = WeakReference::create(new Cycle());
|
H A D | destructors_010.phpt | 26 $weakRef = WeakReference::create(new Cycle());
|
/php-src/Zend/tests/gc/ |
H A D | gc_048.phpt | 33 $cycleWithoutDestructorWeak = \WeakReference::create($cycleWithoutDestructor); 35 $cycleWithDestructorWeak = \WeakReference::create($cycleWithDestructor);
|
H A D | gc_050.phpt | 22 $weakO = \WeakReference::create($o);
|
/php-src/Zend/tests/lazy_objects/rfc/ |
H A D | rfc_example_007.phpt | 11 $ref = WeakReference::create($object);
|
Completed in 32 milliseconds
12