/PHP-7.3/Zend/tests/traits/ |
H A D | bug55554a.phpt | 10 echo "ctor executed\n"; 32 New constructor: ctor executed 33 Legacy constructor: ctor executed
|
/PHP-7.3/ext/reflection/tests/ |
H A D | bug38942.phpt | 2 Bug #38942 (Double old-style-ctor inheritance) 31 Method [ <user, inherits foo, ctor> public method foo ] {
|
H A D | ReflectionMethod_basic2.phpt | 153 string(%d) "Method [ <internal:Reflection, ctor> public method __construct ] { 163 string(%d) "Method [ <internal:Reflection, ctor> public method __construct ] {
|
H A D | ReflectionClass_toString_001.phpt | 44 Method [ <internal:Reflection, ctor> public method __construct ] {
|
/PHP-7.3/ext/spl/tests/ |
H A D | bug71412.phpt | 8 Method [ <internal:SPL, ctor> public method __construct ] {
|
H A D | bug61828.phpt | 2 Bug #61828 (Memleak when calling Directory(Recursive)Iterator/Spl(Temp)FileObject ctor twice)
|
/PHP-7.3/ext/spl/ |
H A D | spl_functions.h | 50 void spl_register_std_class(zend_class_entry ** ppce, char * class_name, create_object_func_t ctor,… 51 …ce, zend_class_entry * parent_ce, char * class_name, create_object_func_t ctor, const zend_functio…
|
H A D | spl_dllist.c | 76 spl_ptr_llist_ctor_func ctor; member 138 llist->ctor = ctor; in spl_ptr_llist_init() 211 if (llist->ctor) { in spl_ptr_llist_unshift() 212 llist->ctor(elem); in spl_ptr_llist_unshift() 235 if (llist->ctor) { in spl_ptr_llist_push() 236 llist->ctor(elem); in spl_ptr_llist_push() 389 intern->llist = (spl_ptr_llist *)spl_ptr_llist_init(other->llist->ctor, other->llist->dtor); in spl_dllist_object_new_ex() 847 if (intern->llist->ctor) { in SPL_METHOD() 848 intern->llist->ctor(element); in SPL_METHOD() 1279 if (intern->llist->ctor) { in SPL_METHOD() [all …]
|
H A D | spl_heap.c | 57 spl_ptr_heap_ctor_func ctor; member 219 static spl_ptr_heap *spl_ptr_heap_init(spl_ptr_heap_cmp_func cmp, spl_ptr_heap_ctor_func ctor, spl_… in spl_ptr_heap_init() argument 224 heap->ctor = ctor; in spl_ptr_heap_init() 312 heap->ctor = from->ctor; in spl_ptr_heap_clone() 322 heap->ctor(&heap->elements[i]); in spl_ptr_heap_clone()
|
/PHP-7.3/TSRM/ |
H A D | TSRM.c | 39 ts_allocate_ctor ctor; member 233 TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allo… in ts_allocate_id() argument 259 resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].ctor = ctor; in ts_allocate_id() 274 if (resource_types_table[j].ctor) { in ts_allocate_id() 275 resource_types_table[j].ctor(p->storage[j]); in ts_allocate_id() 316 if (resource_types_table[i].ctor) { in allocate_new_resource() 317 resource_types_table[i].ctor((*thread_resources_ptr)->storage[i]); in allocate_new_resource()
|
H A D | TSRM.h | 95 TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allo…
|
/PHP-7.3/Zend/tests/ |
H A D | bug38942.phpt | 2 Bug #38942 (Double old-style-ctor inheritance)
|
H A D | bug37632.phpt | 61 /* Right now Ctor's cannot be made protected when defined in a ctor. That is
|
/PHP-7.3/ext/libxml/tests/ |
H A D | bug79191.phpt | 2 Bug #79191 (Error in SoapClient ctor disables DOMDocument::save())
|
/PHP-7.3/tests/classes/ |
H A D | final_ctor2.phpt | 2 ZE2 cannot override final old style ctor
|
/PHP-7.3/sapi/cli/tests/ |
H A D | 005.phpt | 65 Method [ <internal:Core, ctor> public method __construct ] {
|
/PHP-7.3/ext/snmp/tests/ |
H A D | reflection.phpt | 25 Method [ <internal:snmp, ctor> public method __construct ] {
|
/PHP-7.3/ext/pdo/tests/ |
H A D | pdo_014.phpt | 51 /* default fetch mode is BOTH, so we see if the ctor can overwrite that */
|
/PHP-7.3/ext/date/ |
H A D | php_date.h | 233 …obj, /*const*/ char *time_str, size_t time_str_len, char *format, zval *timezone_object, int ctor);
|
H A D | php_date.c | 2652 …nst*/ char *time_str, size_t time_str_len, char *format, zval *timezone_object, int ctor) /* {{{ */ in php_date_initialize() argument 2676 if (ctor && err && err->error_count) { in php_date_initialize()
|
/PHP-7.3/Zend/ |
H A D | zend_API.c | 2339 …if ((fname_len == class_name_len) && !ctor && !memcmp(ZSTR_VAL(lowercase_name), lc_class_name, cla… in zend_register_functions() 2340 ctor = reg_function; in zend_register_functions() 2344 ctor = reg_function; in zend_register_functions() 2401 scope->constructor = ctor; in zend_register_functions() 2412 if (ctor) { in zend_register_functions() 2413 ctor->common.fn_flags |= ZEND_ACC_CTOR; in zend_register_functions() 2414 if (ctor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions() 2415 … "Constructor %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(ctor->common.function_na… in zend_register_functions() 2417 ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions() 2480 …if (ctor && ctor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && ctor->common.fn_flags & ZEND_ACC_C… in zend_register_functions() [all …]
|
H A D | zend_execute_API.c | 1392 int ctor; member 1402 if (!ai->ctor) { in zend_verify_abstract_class_function() 1404 ai->ctor = 1; in zend_verify_abstract_class_function()
|
/PHP-7.3/ |
H A D | NEWS | 492 . Fixed bug #79191 (Error in SoapClient ctor disables DOMDocument::save()).
|