Lines Matching refs:date_obj

4951 		php_date_obj *date_obj;  in date_object_get_properties_period()  local
4953 date_obj = zend_object_store_get_object(zv TSRMLS_CC); in date_object_get_properties_period()
4954 date_obj->time = timelib_time_clone(period_obj->start); in date_object_get_properties_period()
4962 php_date_obj *date_obj; in date_object_get_properties_period() local
4964 date_obj = zend_object_store_get_object(zv TSRMLS_CC); in date_object_get_properties_period()
4965 date_obj->time = timelib_time_clone(period_obj->current); in date_object_get_properties_period()
4973 php_date_obj *date_obj; in date_object_get_properties_period() local
4975 date_obj = zend_object_store_get_object(zv TSRMLS_CC); in date_object_get_properties_period()
4976 date_obj->time = timelib_time_clone(period_obj->end); in date_object_get_properties_period()
5014 php_date_obj *date_obj; in php_date_period_initialize_from_hash() local
5015 date_obj = zend_object_store_get_object(*ht_entry TSRMLS_CC); in php_date_period_initialize_from_hash()
5016 period_obj->start = timelib_time_clone(date_obj->time); in php_date_period_initialize_from_hash()
5027 php_date_obj *date_obj; in php_date_period_initialize_from_hash() local
5028 date_obj = zend_object_store_get_object(*ht_entry TSRMLS_CC); in php_date_period_initialize_from_hash()
5029 period_obj->end = timelib_time_clone(date_obj->time); in php_date_period_initialize_from_hash()
5039 php_date_obj *date_obj; in php_date_period_initialize_from_hash() local
5040 date_obj = zend_object_store_get_object(*ht_entry TSRMLS_CC); in php_date_period_initialize_from_hash()
5041 period_obj->current = timelib_time_clone(date_obj->time); in php_date_period_initialize_from_hash()