Home
last modified time | relevance | path

Searched refs:tm_gmtoff (Results 1 – 25 of 36) sorted by relevance

12

/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_libc.cc39 auto tm_gmtoff(const std::tm& tm) -> decltype(_timezone + _dstbias) { in tm_gmtoff() function
49 auto tm_gmtoff(const std::tm& tm) -> decltype(timezone) {
60 auto tm_gmtoff(const std::tm& tm) -> decltype(_timezone + 0) {
70 #if defined(tm_gmtoff)
71 auto tm_gmtoff(const std::tm& tm) -> decltype(tm.tm_gmtoff) {
72 return tm.tm_gmtoff;
75 auto tm_gmtoff(const std::tm& tm) -> decltype(tm.__tm_gmtoff) {
80 auto tm_gmtoff(const T& tm) -> decltype(tm.tm_gmtoff) {
81 return tm.tm_gmtoff;
84 auto tm_gmtoff(const T& tm) -> decltype(tm.__tm_gmtoff) {
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_libc.cc45 auto tm_gmtoff(const std::tm& tm) -> decltype(_timezone + _dstbias) { in tm_gmtoff() function
55 auto tm_gmtoff(const std::tm& tm) -> decltype(timezone) {
66 auto tm_gmtoff(const std::tm& tm) -> decltype(_timezone + 0) {
76 #if defined(tm_gmtoff)
77 auto tm_gmtoff(const std::tm& tm) -> decltype(tm.tm_gmtoff) {
78 return tm.tm_gmtoff;
81 auto tm_gmtoff(const std::tm& tm) -> decltype(tm.__tm_gmtoff) {
86 auto tm_gmtoff(const T& tm) -> decltype(tm.tm_gmtoff) {
87 return tm.tm_gmtoff;
90 auto tm_gmtoff(const T& tm) -> decltype(tm.__tm_gmtoff) {
[all …]
/third_party/jerryscript/jerry-port/default/
Ddefault-date.c70 now -= tm.tm_gmtoff; in jerry_port_get_local_time_zone_adjustment()
73 return ((double) tm.tm_gmtoff) * 1000; in jerry_port_get_local_time_zone_adjustment()
81 now -= tm.tm_gmtoff; in jerry_port_get_local_time_zone_adjustment()
84 return ((double) tm.tm_gmtoff) * 1000; in jerry_port_get_local_time_zone_adjustment()
DCMakeLists.txt58 # tm.tm_gmtoff is non-standard, so glibc doesn't expose it in c99 mode
61 CHECK_STRUCT_HAS_MEMBER ("struct tm" tm_gmtoff time.h HAVE_TM_GMTOFF)
/third_party/musl/libc-test/src/functional/
Dstrptime.c48 } else if (tm.tm_gmtoff != expected) { in checkStrptimeTz()
49 t_error("\"%%z\": for \"%s\" expected tm_gmtoff %ld but got %ld\n", s, tm.tm_gmtoff, expected); in checkStrptimeTz()
/third_party/musl/porting/liteos_m/kernel/include/
Dtime.h16 #define __tm_gmtoff tm_gmtoff
111 #define __tm_gmtoff tm_gmtoff
/third_party/python/Lib/test/
Dtest_time.py688 if lt.tm_gmtoff is None:
691 self.assertEqual(lt.tm_gmtoff, -[time.timezone, time.altzone][lt.tm_isdst])
707 self.assertEqual(new_lt.tm_gmtoff, lt.tm_gmtoff)
710 self.assertEqual(new_lt.tm_gmtoff, lt.tm_gmtoff)
718 self.assertEqual(t.tm_gmtoff, 5 * 3600)
728 self.assertIs(lt.tm_gmtoff, None)
/third_party/uboot/u-boot-2020.01/include/linux/
Dtime.h42 long int tm_gmtoff; /* Seconds east of UTC. */ member
/third_party/tzdata/
Dnewctime.3.txt126 long tm_gmtoff; /* offset from UT in seconds (optional) */
130 The tm_gmtoff field is the offset (in seconds) of the time represented
135 In struct tm the tm_zone and tm_gmtoff fields exist, and are filled in,
Dprivate.h578 # define TM_GMTOFF tm_gmtoff
/third_party/musl/include/
Dtime.h34 #define __tm_gmtoff tm_gmtoff
/third_party/musl/porting/liteos_a/kernel/include/
Dtime.h37 #define __tm_gmtoff tm_gmtoff
/third_party/python/Lib/email/
Dutils.py356 delta = datetime.timedelta(seconds=localtm.tm_gmtoff)
/third_party/jerryscript/docs/
D05.PORT-API.md312 now -= tm.tm_gmtoff;
315 return ((double) tm.tm_gmtoff) * 1000;
D16.MIGRATION-GUIDE.md532 now -= tm.tm_gmtoff;
535 return ((double) tm.tm_gmtoff) * 1000;
/third_party/python/Modules/
Dtimemodule.c433 SET(10, p->tm_gmtoff);
605 p->tm_gmtoff = PyLong_AsLong(item);
1652 return p->tm_gmtoff;
/third_party/gstreamer/gstreamer/
Dconfigure.ac574 dnl *** checking for tm_gmtoff ***
575 AC_MSG_CHECKING([for tm_gmtoff])
580 t.tm_gmtoff = 0;
584 AC_DEFINE(HAVE_TM_GMTOFF,1,[Have tm_gmtoff field in struct tm])],
Dmeson.build217 if cc.has_member('struct tm', 'tm_gmtoff', prefix : '#include <time.h>')
Dconfig.h.in411 /* Have tm_gmtoff field in struct tm */
/third_party/python/Doc/library/
Dtime.rst89 The :class:`struct_time` type was extended to provide the :attr:`tm_gmtoff`
94 The :class:`struct_time` attributes :attr:`tm_gmtoff` and :attr:`tm_zone`
545 | N/A | :attr:`tm_gmtoff` | offset east of UTC in seconds |
863 for times in the past. It is recommended to use the :attr:`tm_gmtoff` and
/third_party/boost/libs/locale/src/util/
Dnumeric.hpp219 tm.tm_gmtoff = gmtoff; in format_time()
/third_party/nghttp2/
Dconfigure.ac634 AC_CHECK_MEMBER([struct tm.tm_gmtoff], [have_struct_tm_tm_gmtoff=yes],
659 [Define to 1 if you have `struct tm.tm_gmtoff` member.])
DCMakeLists.txt293 check_struct_has_member("struct tm" tm_gmtoff time.h HAVE_STRUCT_TM_TM_GMTOFF)
/third_party/nghttp2/src/
Dutil.cc316 auto gmtoff = tms.tm_gmtoff; in common_log_date()
367 auto gmtoff = tms.tm_gmtoff; in iso8601_date()
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstdatetime.c288 assert_equals_int (ts, tm.tm_gmtoff / 3600.0); in GST_START_TEST()

12