/third_party/boost/libs/date_time/test/local_time/ |
D | testlocal_time_input_facet.cpp | 80 check("Wide stream, Eastern US, daylight savings, winter, minimal input", !ldt1.is_dst()); in main() 92 check("Wide stream, Eastern US, daylight savings, winter, custom format", ldt1.is_dst()); in main() 103 check("Eastern US, daylight savings, winter, minimal input", !ldt1.is_dst()); in main() 112 check("Eastern US, daylight savings, summer, minimal input", ldt1.is_dst()); in main() 117 check("Eastern US, daylight savings, transition point", !ldt1.is_dst()); in main() 119 check("Eastern US, daylight savings, transition point", ldt1.is_dst()); in main() 123 check("Eastern US, daylight savings, transition point", !ldt1.is_dst()); in main() 125 check("Eastern US, daylight savings, transition point", ldt1.is_dst()); in main() 130 check("Eastern US, daylight savings, transition point", ldt1.is_dst()); in main() 132 check("Eastern US, daylight savings, transition point", ldt1.is_dst()); in main() [all …]
|
D | testlocal_time.cpp | 65 check("is_dst check", az_time.is_dst() == false); in main() 74 check("is_dst check", az_time2.is_dst() == false); in main() 90 check("is_dst", sv_time.is_dst() == false); in main() 95 check("is_dst", sv_time2.is_dst() == false); in main() 168 check("is_dst check", az_time3.is_dst() == false); in main() 176 check("is_dst check", null_tz_time.is_dst() == false); in main() 207 check("is_dst - transition in 1", lt1.is_dst() == false); in main() 208 check("is_dst - transition in 2", lt2.is_dst() == false); in main() 211 check("is_dst - transition in 1", lt1.is_dst() == true); in main() 212 check("is_dst - transition in 2", lt2.is_dst() == true); in main() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_libc.cc | 46 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 …]
|
D | time_zone_info.cc | 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() 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 …]
|
D | time_zone_info.h | 60 bool is_dst; // did we move into daylight-saving time member 98 bool GetTransitionType(std::int_fast32_t utc_offset, bool is_dst,
|
D | time_zone_lookup_test.cc | 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()
|
/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_libc.cc | 40 const bool is_dst = tm.tm_isdst > 0; in tm_gmtoff() local 41 return _timezone + (is_dst ? _dstbias : 0); in tm_gmtoff() 44 const bool is_dst = tm.tm_isdst > 0; in tm_zone() local 45 return _tzname[is_dst]; in tm_zone() 50 const bool is_dst = tm.tm_isdst > 0; 51 return is_dst ? altzone : timezone; 54 const bool is_dst = tm.tm_isdst > 0; 55 return tzname[is_dst]; 61 const bool is_dst = tm.tm_isdst > 0; 62 return _timezone + (is_dst ? 60 * 60 : 0); [all …]
|
D | time_zone_info.cc | 208 tt.is_dst = false; in ResetToBuiltinUTC() 290 if (tt1.is_dst != tt2.is_dst) return false; in EquivTransitions() 296 bool TimeZoneInfo::GetTransitionType(std::int_fast32_t utc_offset, bool is_dst, in GetTransitionType() argument 305 if (tt.utc_offset == utc_offset && tt.is_dst == is_dst) { in GetTransitionType() 316 tt.is_dst = is_dst; in GetTransitionType() 456 transition_types_[i].is_dst = (Decode8(bp++) != 0); in Load() 465 if (transition_types_[0].is_dst) { in Load() 467 while (index != 0 && transition_types_[index].is_dst) --index; in Load() 469 while (index != hdr.typecnt && transition_types_[index].is_dst) ++index; in Load() 743 tt.is_dst, &abbreviations_[tt.abbr_index]}; in LocalTime() [all …]
|
D | time_zone_info.h | 60 bool is_dst; // did we move into daylight-saving time member 98 bool GetTransitionType(std::int_fast32_t utc_offset, bool is_dst,
|
D | time_zone_lookup_test.cc | 653 EXPECT_TRUE(isdst == al.is_dst); \ 1051 if (pal.is_dst == tal.is_dst) { in TEST() 1065 if (zi.lookup(cl_zi.pre).is_dst == zi.lookup(cl_zi.post).is_dst) { in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
D | time.cc | 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()
|
/third_party/abseil-cpp/absl/time/ |
D | time.cc | 80 bd.is_dst = false; in InfiniteFutureBreakdown() 97 bd.is_dst = false; in InfinitePastBreakdown() 107 ci.is_dst = false; in InfiniteFutureCivilInfo() 117 ci.is_dst = false; in InfinitePastCivilInfo() 225 bd.is_dst = al.is_dst; in In() 362 ci.is_dst = al.is_dst; in At() 493 tm.tm_isdst = ci.is_dst ? 1 : 0; in ToTM()
|
/third_party/boost/boost/date_time/ |
D | local_time_adjustor.hpp | 60 time_duration_type utc_offset(bool is_dst) in utc_offset() argument 62 if (is_dst) { in utc_offset() 142 case is_dst: in local_to_utc_offset()
|
D | time_defs.hpp | 36 enum dst_flags {not_dst, is_dst, calculate}; enumerator
|
/third_party/boost/boost/date_time/local_time/ |
D | local_date_time.hpp | 233 bool is_dst() const in is_dst() function in boost::local_time::local_date_time_base 271 if (is_dst()) { in local_time() 294 bool is_dst_ = is_dst(); in to_string() 300 if (is_dst()) { in to_string() 330 if (is_dst()) { in zone_name() 364 if (is_dst()) { in zone_abbrev()
|
D | conversion.hpp | 23 if(lt.is_dst()){ in to_tm()
|
/third_party/boost/libs/date_time/test/posix_time/ |
D | testlocal_adjustor.cpp | 52 us_eastern::local_to_utc_offset(t11, boost::date_time::is_dst) == hours(4)); in main() 66 us_eastern::local_to_utc_offset(l_in_dst, boost::date_time::is_dst) == hours(4)); in main() 75 us_eastern::local_to_utc_offset(dst_end, boost::date_time::is_dst) == hours(4)); in main()
|
/third_party/glib/glib/ |
D | gtimezone.c | 175 gboolean is_dst; member 431 info.is_dst = FALSE; in zone_for_constant_offset() 644 t_info.is_dst = info.tt_isdst ? TRUE : FALSE; in init_zone_from_iana_info() 673 t_info.is_dst = footer_t_info->is_dst; in init_zone_from_iana_info() 1091 gboolean is_dst) in fill_transition_info_from_rule() argument 1093 gint offset = is_dst ? rule->dlt_offset : rule->std_offset; in fill_transition_info_from_rule() 1094 gchar *name = is_dst ? rule->dlt_name : rule->std_name; in fill_transition_info_from_rule() 1097 info->is_dst = is_dst; in fill_transition_info_from_rule() 1993 if (!tzinfo->is_dst) in interval_info() 2038 return interval_info (tz, interval)->is_dst; in interval_isdst()
|
/third_party/boost/libs/locale/src/icu/ |
D | date_time.cpp | 177 case is_dst: in set_option() 188 case is_dst: in get_option()
|
/third_party/boost/boost/locale/ |
D | date_time_facet.hpp | 152 is_dst ///< Check if the current time is in daylight time savings enumerator
|
/third_party/boost/libs/locale/src/util/ |
D | gregorian.cpp | 581 case is_dst: in set_option() 595 case is_dst: in get_option()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
D | time_zone.h | 102 bool is_dst; // is offset non-standard? member
|
/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
D | time_zone.h | 102 bool is_dst; // is offset non-standard? member
|
/third_party/iptables/iptables/ |
D | nft-bridge.c | 412 bool is_dst, have_ip, inv; in nft_bridge_parse_lookup() local 418 if (lookup_analyze_payloads(ctx, &is_dst, &have_ip)) in nft_bridge_parse_lookup() 469 poff = nft_among_prepare_data(among_data, is_dst, cnt, inv, have_ip); in nft_bridge_parse_lookup()
|
/third_party/boost/libs/locale/src/shared/ |
D | date_time.cpp | 432 return impl_->get_option(abstract_calendar::is_dst)!=0; in is_in_daylight_saving_time()
|