Lines Matching refs:ce

312 static void date_throw_uninitialized_error(zend_class_entry *ce)  in date_throw_uninitialized_error()  argument
314 if (ce->type == ZEND_INTERNAL_CLASS) { in date_throw_uninitialized_error()
315 …en correctly initialized by calling parent::__construct() in its constructor", ZSTR_VAL(ce->name)); in date_throw_uninitialized_error()
317 zend_class_entry *ce_ptr = ce; in date_throw_uninitialized_error()
322 …en correctly initialized by calling parent::__construct() in its constructor", ZSTR_VAL(ce->name)); in date_throw_uninitialized_error()
324 …initialized by calling parent::__construct() in its constructor", ZSTR_VAL(ce->name), ZSTR_VAL(ce_… in date_throw_uninitialized_error()
328 #define DATE_CHECK_INITIALIZED(member, ce) \ argument
330 date_throw_uninitialized_error(ce); \
595 zend_class_entry *ce; in update_property() local
598 ce = zend_lookup_class(cname); in update_property()
600 if (ce) { in update_property()
601 zend_update_property(ce, object, prop_name, prop_name_len, prop_val); in update_property()
606 zend_update_property(object->ce, object, prop_name, prop_name_len, prop_val); in update_property()
613 zend_update_property(object->ce, object, ZSTR_VAL(key), ZSTR_LEN(key), prop_val); in update_property()
1479 static void create_date_period_datetime(timelib_time *datetime, zend_class_entry *ce, zval *zv) in create_date_period_datetime() argument
1484 object_init_ex(zv, ce); in create_date_period_datetime()
1708 static zend_object_iterator *date_object_period_get_iterator(zend_class_entry *ce, zval *object, in… in date_object_period_get_iterator() argument
1864 php_date_obj *new_obj = php_date_obj_from_obj(date_object_new_date(old_obj->std.ce)); in date_object_clone_date()
2004 php_timezone_obj *new_obj = php_timezone_obj_from_obj(date_object_new_timezone(old_obj->std.ce)); in date_object_clone_timezone()
2168 php_interval_obj *new_obj = php_interval_obj_from_obj(date_object_new_interval(old_obj->std.ce)); in date_object_clone_interval()
2259 php_period_obj *new_obj = php_period_obj_from_obj(date_object_new_period(old_obj->std.ce)); in date_object_clone_period()
2621 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_date, ret… in PHP_FUNCTION()
2643 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_immutable… in PHP_FUNCTION()
2699 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_date, ret… in PHP_METHOD()
2720 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_date, ret… in PHP_METHOD()
2738 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_date, &ne… in PHP_METHOD()
2774 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_immutable… in PHP_METHOD()
2795 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_immutable… in PHP_METHOD()
2813 …php_date_instantiate(execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_immutable… in PHP_METHOD()
5124 …object_init_ex(return_value, execute_data->This.value.ce ? execute_data->This.value.ce : date_ce_p… in PHP_METHOD()