Searched refs:isdst (Results 1 – 12 of 12) sorted by relevance
/PHP-8.3/ext/date/tests/ |
H A D | bug80963.phpt | 25 ["isdst"]=> 38 ["isdst"]=> 51 ["isdst"]=>
|
H A D | timezone_name_from_abbr_basic1.phpt | 22 echo "-- Tests without valid name - uses gmtOffset and isdst to find match --\n"; 43 -- Tests without valid name - uses gmtOffset and isdst to find match --
|
H A D | bug48058.phpt | 24 ["isdst"]=>
|
H A D | timezone_transitions_get_basic1.phpt | 41 ["isdst"]=>
|
H A D | DateTimeZone_getTransitions_basic1.phpt | 38 ["isdst"]=>
|
H A D | DateTimeZone_getTransitions_bug1.phpt | 13 …printf("%12d %s %6d %s %s\n", $t['ts'], $t['time'], $t['offset'], $t['isdst'] ? "DST" : " x ", $t[…
|
/PHP-8.3/ext/date/lib/ |
H A D | parse_tz.c | 267 tz->type[i].isdst = buffer[j + 4]; in read_64bit_types() 377 static signed int find_ttinfo_index(timelib_tzinfo *tz, int32_t offset, int isdst, char *abbr) in find_ttinfo_index() argument 384 (isdst == tz->type[i].isdst) && in find_ttinfo_index() 406 static signed int add_new_ttinfo_index(timelib_tzinfo *tz, int32_t offset, int isdst, char *abbr) in add_new_ttinfo_index() argument 409 tz->type[tz->bit64.typecnt].isdst = isdst; in add_new_ttinfo_index() 500 tz->type[i].isdst, in format_offset_type() 876 return to->isdst; in timelib_timestamp_is_in_dst() 893 tmp->is_dst = to->isdst; in timelib_get_time_zone_info() 927 *is_dst = to->isdst; in timelib_get_time_zone_offset_info()
|
H A D | timelib_private.h | 141 int isdst; member
|
H A D | timelib.h | 588 const char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst);
|
H A D | parse_date.re | 772 …tic const timelib_tz_lookup_table* abbr_search(const char *word, timelib_long gmtoffset, int isdst) 801 * offset/isdst then */ 803 if (fmp->gmtoffset == gmtoffset && fmp->type == isdst) { 2724 const char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst) 2728 tp = abbr_search(abbr, gmtoffset, isdst);
|
H A D | parse_date.c | 774 …tic const timelib_tz_lookup_table* abbr_search(const char *word, timelib_long gmtoffset, int isdst) in abbr_search() argument 805 if (fmp->gmtoffset == gmtoffset && fmp->type == isdst) { in abbr_search() 25574 const char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst) in timelib_timezone_id_from_abbr() argument 25578 tp = abbr_search(abbr, gmtoffset, isdst); in timelib_timezone_id_from_abbr()
|
/PHP-8.3/ext/date/ |
H A D | php_date.c | 4038 zend_long isdst = -1; in PHP_FUNCTION() local 4044 Z_PARAM_LONG(isdst) in PHP_FUNCTION() 4047 tzid = timelib_timezone_id_from_abbr(ZSTR_VAL(abbr), gmtoffset, isdst); in PHP_FUNCTION() 4112 add_assoc_bool(&element, "isdst", tzobj->tzi.tz->type[0].isdst); \ in PHP_FUNCTION() 4121 add_assoc_bool(&element, "isdst", tzobj->tzi.tz->type[tzobj->tzi.tz->trans_idx[i]].isdst); \ in PHP_FUNCTION() 4130 add_assoc_bool(&element, "isdst", tzobj->tzi.tz->type[i].isdst); \ in PHP_FUNCTION()
|
Completed in 101 milliseconds