Lines Matching refs:abbr

645 			offset->abbr = timelib_strdup(t->tz_abbr);  in date_format()
651 offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */ in date_format()
652 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in date_format()
719 …if (!localtime || strcmp(offset->abbr, "UTC") == 0 || strcmp(offset->abbr, "Z") == 0 || strcmp(off… in date_format()
732 …case 'T': length = slprintf(buffer, sizeof(buffer), "%s", localtime ? offset->abbr : "GMT"); break; in date_format()
741 length = slprintf(buffer, sizeof(buffer), "%s", offset->abbr); in date_format()
863 offset->abbr = timelib_strdup(t->tz_abbr); in php_idate()
869 offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */ in php_idate()
870 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in php_idate()
1255 ta.tm_zone = offset->abbr; in php_strftime()
1916 new_obj->tzi.z.abbr = timelib_strdup(old_obj->tzi.z.abbr); in date_object_clone_timezone()
1946 return strcmp(o1->tzi.z.abbr, o2->tzi.z.abbr) ? 1 : 0; in date_object_compare_timezone()
1984 ZVAL_STRING(zv, tzobj->tzi.z.abbr); in php_timezone_to_string()
2171 timelib_free(intern->tzi.z.abbr); in date_object_free_storage_timezone()
2298 new_abbr = timelib_strdup(tzobj->tzi.z.abbr); in php_date_initialize()
3097 tzobj->tzi.z.abbr = timelib_strdup(t->tz_abbr); in set_timezone_from_timelib_time()
3615 zend_string *abbr; in PHP_FUNCTION() local
3621 Z_PARAM_STR(abbr) in PHP_FUNCTION()
3627 tzid = timelib_timezone_id_from_abbr(ZSTR_VAL(abbr), gmtoffset, isdst); in PHP_FUNCTION()
3719 add_assoc_string(&element, "abbr", (to)->abbr); \ in PHP_FUNCTION()