Home
last modified time | relevance | path

Searched refs:ctor (Results 1 – 19 of 19) sorted by relevance

/PHP-5.3/ext/reflection/tests/
H A Dbug38942.phpt2 Bug #38942 (Double old-style-ctor inheritance)
30 Method [ <user, inherits foo, ctor> public method foo ] {
H A DReflectionMethod_basic2.phpt153 string(%d) "Method [ <internal:Reflection, ctor> public method __construct ] {
163 string(%d) "Method [ <internal:Reflection, ctor> public method __construct ] {
H A DReflectionClass_toString_001.phpt44 Method [ <internal:Reflection, ctor> public method __construct ] {
/PHP-5.3/Zend/tests/
H A Dbug38942.phpt2 Bug #38942 (Double old-style-ctor inheritance)
H A Dbug37632.phpt61 /* Right now Ctor's cannot be made protected when defined in a ctor. That is
/PHP-5.3/ext/spl/
H A Dspl_dllist.c77 spl_ptr_llist_ctor_func ctor; member
130 llist->ctor = ctor; in spl_ptr_llist_init()
203 if (llist->ctor) { in spl_ptr_llist_unshift()
204 llist->ctor(elem TSRMLS_CC); in spl_ptr_llist_unshift()
227 if (llist->ctor) { in spl_ptr_llist_push()
228 llist->ctor(elem TSRMLS_CC); in spl_ptr_llist_push()
321 spl_ptr_llist_ctor_func ctor = from->ctor; in spl_ptr_llist_copy() local
326 if (ctor) { in spl_ptr_llist_copy()
327 ctor(current TSRMLS_CC); in spl_ptr_llist_copy()
852 if (intern->llist->ctor) { in SPL_METHOD()
[all …]
H A Dspl_functions.h52 void spl_register_std_class(zend_class_entry ** ppce, char * class_name, create_object_func_t ctor,…
53 …ce, zend_class_entry * parent_ce, char * class_name, create_object_func_t ctor, const zend_functio…
H A Dspl_heap.c60 spl_ptr_heap_ctor_func ctor; member
224 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
229 heap->ctor = ctor; in spl_ptr_heap_init()
249 heap->ctor(elem TSRMLS_CC); in spl_ptr_heap_insert()
321 heap->ctor = from->ctor; in spl_ptr_heap_clone()
331 heap->ctor(heap->elements[i] TSRMLS_CC); in spl_ptr_heap_clone()
/PHP-5.3/TSRM/
H A DTSRM.c35 ts_allocate_ctor ctor; member
215 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
239 resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].ctor = ctor; in ts_allocate_id()
254 if (resource_types_table[j].ctor) { in ts_allocate_id()
255 resource_types_table[j].ctor(p->storage[j], &p->storage); in ts_allocate_id()
293 if (resource_types_table[i].ctor) { in allocate_new_resource()
294 …resource_types_table[i].ctor((*thread_resources_ptr)->storage[i], &(*thread_resources_ptr)->storag… in allocate_new_resource()
H A DTSRM.h107 TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allo…
/PHP-5.3/tests/classes/
H A Dfinal_ctor2.phpt2 ZE2 cannot override final old style ctor
/PHP-5.3/sapi/cli/tests/
H A D005.phpt68 Method [ <internal:Core, ctor> public method __construct ] {
/PHP-5.3/ext/pdo/tests/
H A Dpdo_014.phpt53 /* default fetch mode is BOTH, so we see if the ctor can overwrite that */
/PHP-5.3/ext/date/
H A Dphp_date.h187 …const*/ char *time_str, int time_str_len, char *format, zval *timezone_object, int ctor TSRMLS_DC);
H A Dphp_date.c2427 …*const*/ char *time_str, int time_str_len, char *format, zval *timezone_object, int ctor TSRMLS_DC) in php_date_initialize()
2449 if (ctor && err && err->error_count) { in php_date_initialize()
/PHP-5.3/Zend/
H A Dzend_API.c1807 …zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = … in zend_register_functions() local
1912 …name_len == class_name_len) && !memcmp(lowercase_name, lc_class_name, class_name_len+1) && !ctor) { in zend_register_functions()
1913 ctor = reg_function; in zend_register_functions()
1915 ctor = reg_function; in zend_register_functions()
1965 scope->constructor = ctor; in zend_register_functions()
1975 if (ctor) { in zend_register_functions()
1976 ctor->common.fn_flags |= ZEND_ACC_CTOR; in zend_register_functions()
1977 if (ctor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
1978 …zend_error(error_type, "Constructor %s::%s() cannot be static", scope->name, ctor->common.function… in zend_register_functions()
1980 ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
H A Dzend_execute_API.c1593 int ctor; member
1603 if (!ai->ctor) { in zend_verify_abstract_class_function()
1605 ai->ctor = 1; in zend_verify_abstract_class_function()
/PHP-5.3/ext/pdo/
H A Dpdo_stmt.c2727 static zend_internal_function ctor = {0}; in row_get_ctor() local
2729 ctor.type = ZEND_INTERNAL_FUNCTION; in row_get_ctor()
2730 ctor.function_name = "__construct"; in row_get_ctor()
2731 ctor.scope = pdo_row_ce; in row_get_ctor()
2732 ctor.handler = ZEND_FN(dbstmt_constructor); in row_get_ctor()
2734 return (union _zend_function*)&ctor; in row_get_ctor()
/PHP-5.3/
H A DNEWS1881 - Changed namespaced classes so that the ctor can only be named
5253 - Fixed bug #38942 (Double old-style-ctor inheritance). (Dmitry)

Completed in 87 milliseconds