Home
last modified time | relevance | path

Searched refs:is_dst (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_libc.cc46 const bool is_dst = tm.tm_isdst > 0; in tm_gmtoff() local
47 return _timezone + (is_dst ? _dstbias : 0); in tm_gmtoff()
50 const bool is_dst = tm.tm_isdst > 0; in tm_zone() local
51 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 …]
Dtime_zone_info.cc209 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() argument
306 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 …]
Dtime_zone_info.h60 bool is_dst; // did we move into daylight-saving time member
98 bool GetTransitionType(std::int_fast32_t utc_offset, bool is_dst,
Dtime_zone_lookup_test.cc653 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()
Dtime_zone_format.cc131 tm.tm_isdst = al.is_dst ? 1 : 0; in ToTM()
Dtime_zone_format_test.cc47 EXPECT_TRUE(isdst == al.is_dst); \
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dtime.cc81 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()
Dtime.h697 bool is_dst; // is offset non-standard? member
939 bool is_dst; // is offset non-standard? member
Dtime_test.cc53 EXPECT_EQ(isdst, ci.is_dst); \
/third_party/node/deps/v8/src/date/
Ddate.h87 bool is_dst = DaylightSavingsOffsetInMs(time_ms) != 0; in LocalTimezone() local
88 const char** name = is_dst ? &dst_tz_name_ : &tz_name_; in LocalTimezone()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/
Dtime_zone.h102 bool is_dst; // is offset non-standard? member
/third_party/node/deps/v8/src/objects/
Dintl-objects.cc2573 bool is_dst = DaylightSavingsOffset(time_ms) != 0; in LocalTimezone() local
2574 std::string* name = is_dst ? &dst_timezone_name_ : &timezone_name_; in LocalTimezone()
2577 GetTimeZone()->getDisplayName(is_dst, icu::TimeZone::LONG, result); in LocalTimezone()