Searched refs:is_dst (Results 1 – 12 of 12) sorted by relevance
46 const bool is_dst = tm.tm_isdst > 0; in tm_gmtoff() local47 return _timezone + (is_dst ? _dstbias : 0); in tm_gmtoff()50 const bool is_dst = tm.tm_isdst > 0; in tm_zone() local51 return _tzname[is_dst]; in tm_zone()56 const bool is_dst = tm.tm_isdst > 0;57 return is_dst ? altzone : timezone;60 const bool is_dst = tm.tm_isdst > 0;61 return tzname[is_dst];67 const bool is_dst = tm.tm_isdst > 0;68 return _timezone + (is_dst ? 60 * 60 : 0);[all …]
209 tt.is_dst = false; in ResetToBuiltinUTC()291 if (tt1.is_dst != tt2.is_dst) return false; in EquivTransitions()297 bool TimeZoneInfo::GetTransitionType(std::int_fast32_t utc_offset, bool is_dst, in GetTransitionType() argument306 if (tt.utc_offset == utc_offset && tt.is_dst == is_dst) { in GetTransitionType()317 tt.is_dst = is_dst; in GetTransitionType()457 transition_types_[i].is_dst = (Decode8(bp++) != 0); in Load()466 if (transition_types_[0].is_dst) { in Load()468 while (index != 0 && transition_types_[index].is_dst) --index; in Load()470 while (index != hdr.typecnt && transition_types_[index].is_dst) ++index; in Load()740 tt.is_dst, &abbreviations_[tt.abbr_index]}; in LocalTime()[all …]
60 bool is_dst; // did we move into daylight-saving time member98 bool GetTransitionType(std::int_fast32_t utc_offset, bool is_dst,
653 EXPECT_TRUE(isdst == al.is_dst); \1063 if (pal.is_dst == tal.is_dst) { in TEST()1077 if (zi.lookup(cl_zi.pre).is_dst == zi.lookup(cl_zi.post).is_dst) { in TEST()
131 tm.tm_isdst = al.is_dst ? 1 : 0; in ToTM()
47 EXPECT_TRUE(isdst == al.is_dst); \
81 bd.is_dst = false; in InfiniteFutureBreakdown()98 bd.is_dst = false; in InfinitePastBreakdown()108 ci.is_dst = false; in InfiniteFutureCivilInfo()118 ci.is_dst = false; in InfinitePastCivilInfo()226 bd.is_dst = al.is_dst; in In()363 ci.is_dst = al.is_dst; in At()494 tm.tm_isdst = ci.is_dst ? 1 : 0; in ToTM()
697 bool is_dst; // is offset non-standard? member939 bool is_dst; // is offset non-standard? member
53 EXPECT_EQ(isdst, ci.is_dst); \
87 bool is_dst = DaylightSavingsOffsetInMs(time_ms) != 0; in LocalTimezone() local88 const char** name = is_dst ? &dst_tz_name_ : &tz_name_; in LocalTimezone()
102 bool is_dst; // is offset non-standard? member
2573 bool is_dst = DaylightSavingsOffset(time_ms) != 0; in LocalTimezone() local2574 std::string* name = is_dst ? &dst_timezone_name_ : &timezone_name_; in LocalTimezone()2577 GetTimeZone()->getDisplayName(is_dst, icu::TimeZone::LONG, result); in LocalTimezone()