Lines Matching refs:class_type

653 static zend_object *date_object_new_date(zend_class_entry *class_type);
654 static zend_object *date_object_new_timezone(zend_class_entry *class_type);
655 static zend_object *date_object_new_interval(zend_class_entry *class_type);
656 static zend_object *date_object_new_period(zend_class_entry *class_type);
2223 static zend_object *date_object_new_date(zend_class_entry *class_type) /* {{{ */ in date_object_new_date() argument
2225 php_date_obj *intern = zend_object_alloc(sizeof(php_date_obj), class_type); in date_object_new_date()
2227 zend_object_std_init(&intern->std, class_type); in date_object_new_date()
2228 object_properties_init(&intern->std, class_type); in date_object_new_date()
2353 static zend_object *date_object_new_timezone(zend_class_entry *class_type) /* {{{ */ in date_object_new_timezone() argument
2355 php_timezone_obj *intern = zend_object_alloc(sizeof(php_timezone_obj), class_type); in date_object_new_timezone()
2357 zend_object_std_init(&intern->std, class_type); in date_object_new_timezone()
2358 object_properties_init(&intern->std, class_type); in date_object_new_timezone()
2498 static zend_object *date_object_new_interval(zend_class_entry *class_type) /* {{{ */ in date_object_new_interval() argument
2500 php_interval_obj *intern = zend_object_alloc(sizeof(php_interval_obj), class_type); in date_object_new_interval()
2502 zend_object_std_init(&intern->std, class_type); in date_object_new_interval()
2503 object_properties_init(&intern->std, class_type); in date_object_new_interval()
2573 static zend_object *date_object_new_period(zend_class_entry *class_type) /* {{{ */ in date_object_new_period() argument
2575 php_period_obj *intern = zend_object_alloc(sizeof(php_period_obj), class_type); in date_object_new_period()
2577 zend_object_std_init(&intern->std, class_type); in date_object_new_period()
2578 object_properties_init(&intern->std, class_type); in date_object_new_period()