Lines Matching refs:abbr

679 			offset->abbr = timelib_strdup(t->tz_abbr);  in date_format()
685 offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */ in date_format()
686 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in date_format()
758 …if (!localtime || strcmp(offset->abbr, "UTC") == 0 || strcmp(offset->abbr, "Z") == 0 || strcmp(off… in date_format()
771 …case 'T': length = slprintf(buffer, sizeof(buffer), "%s", localtime ? offset->abbr : "GMT"); break; in date_format()
780 length = slprintf(buffer, sizeof(buffer), "%s", offset->abbr); in date_format()
902 offset->abbr = timelib_strdup(t->tz_abbr); in php_idate()
908 offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */ in php_idate()
909 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in php_idate()
1296 ta.tm_zone = offset->abbr; in php_strftime()
1986 new_obj->tzi.z.abbr = timelib_strdup(old_obj->tzi.z.abbr); in date_object_clone_timezone()
2016 return strcmp(o1->tzi.z.abbr, o2->tzi.z.abbr) ? 1 : 0; in date_object_compare_timezone()
2054 ZVAL_STRING(zv, tzobj->tzi.z.abbr); in php_timezone_to_string()
2265 timelib_free(intern->tzi.z.abbr); in date_object_free_storage_timezone()
2422 new_abbr = timelib_strdup(tzobj->tzi.z.abbr); in php_date_initialize()
3331 timelib_free(tzobj->tzi.z.abbr); in set_timezone_from_timelib_time()
3348 tzobj->tzi.z.abbr = timelib_strdup(t->tz_abbr); in set_timezone_from_timelib_time()
3936 zend_string *abbr; in PHP_FUNCTION() local
3942 Z_PARAM_STR(abbr) in PHP_FUNCTION()
3948 tzid = timelib_timezone_id_from_abbr(ZSTR_VAL(abbr), gmtoffset, isdst); in PHP_FUNCTION()
4041 add_assoc_string(&element, "abbr", (to)->abbr); \ in PHP_FUNCTION()