Lines Matching refs:abbr
697 offset->abbr = timelib_strdup(t->tz_abbr); in date_format()
703 offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */ in date_format()
704 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in date_format()
776 …if (!localtime || strcmp(offset->abbr, "UTC") == 0 || strcmp(offset->abbr, "Z") == 0 || strcmp(off… in date_format()
789 …case 'T': length = slprintf(buffer, sizeof(buffer), "%s", localtime ? offset->abbr : "GMT"); break; in date_format()
798 length = slprintf(buffer, sizeof(buffer), "%s", offset->abbr); in date_format()
929 offset->abbr = timelib_strdup(t->tz_abbr); in php_idate()
935 offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */ in php_idate()
936 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in php_idate()
1323 ta.tm_zone = offset->abbr; in php_strftime()
1990 new_obj->tzi.z.abbr = timelib_strdup(old_obj->tzi.z.abbr); in date_object_clone_timezone()
2020 return strcmp(o1->tzi.z.abbr, o2->tzi.z.abbr) ? 1 : 0; in date_object_compare_timezone()
2058 ZVAL_STRING(zv, tzobj->tzi.z.abbr); in php_timezone_to_string()
2266 timelib_free(intern->tzi.z.abbr); in date_object_free_storage_timezone()
2423 new_abbr = timelib_strdup(tzobj->tzi.z.abbr); in php_date_initialize()
3510 timelib_free(tzobj->tzi.z.abbr); in set_timezone_from_timelib_time()
3527 tzobj->tzi.z.abbr = timelib_strdup(t->tz_abbr); in set_timezone_from_timelib_time()
4219 zend_string *abbr; in PHP_FUNCTION() local
4225 Z_PARAM_STR(abbr) in PHP_FUNCTION()
4231 tzid = timelib_timezone_id_from_abbr(ZSTR_VAL(abbr), gmtoffset, isdst); in PHP_FUNCTION()
4324 add_assoc_string(&element, "abbr", (to)->abbr); \ in PHP_FUNCTION()