Lines Matching refs:class_type

577 static zend_object_value date_object_new_date(zend_class_entry *class_type TSRMLS_DC);
578 static zend_object_value date_object_new_timezone(zend_class_entry *class_type TSRMLS_DC);
579 static zend_object_value date_object_new_interval(zend_class_entry *class_type TSRMLS_DC);
580 static zend_object_value date_object_new_period(zend_class_entry *class_type TSRMLS_DC);
2030 static inline zend_object_value date_object_new_date_ex(zend_class_entry *class_type, php_date_obj … in date_object_new_date_ex() argument
2041 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in date_object_new_date_ex()
2042 object_properties_init(&intern->std, class_type); in date_object_new_date_ex()
2050 static zend_object_value date_object_new_date(zend_class_entry *class_type TSRMLS_DC) in date_object_new_date()
2052 return date_object_new_date_ex(class_type, NULL TSRMLS_CC); in date_object_new_date()
2164 static inline zend_object_value date_object_new_timezone_ex(zend_class_entry *class_type, php_timez… in date_object_new_timezone_ex() argument
2175 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in date_object_new_timezone_ex()
2176 object_properties_init(&intern->std, class_type); in date_object_new_timezone_ex()
2184 static zend_object_value date_object_new_timezone(zend_class_entry *class_type TSRMLS_DC) in date_object_new_timezone()
2186 return date_object_new_timezone_ex(class_type, NULL TSRMLS_CC); in date_object_new_timezone()
2219 static inline zend_object_value date_object_new_interval_ex(zend_class_entry *class_type, php_inter… in date_object_new_interval_ex() argument
2230 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in date_object_new_interval_ex()
2231 object_properties_init(&intern->std, class_type); in date_object_new_interval_ex()
2239 static zend_object_value date_object_new_interval(zend_class_entry *class_type TSRMLS_DC) in date_object_new_interval()
2241 return date_object_new_interval_ex(class_type, NULL TSRMLS_CC); in date_object_new_interval()
2308 static inline zend_object_value date_object_new_period_ex(zend_class_entry *class_type, php_period_… in date_object_new_period_ex() argument
2319 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in date_object_new_period_ex()
2320 object_properties_init(&intern->std, class_type); in date_object_new_period_ex()
2328 static zend_object_value date_object_new_period(zend_class_entry *class_type TSRMLS_DC) in date_object_new_period()
2330 return date_object_new_period_ex(class_type, NULL TSRMLS_CC); in date_object_new_period()