/external/v8/src/base/platform/ |
D | platform-posix-time.cc | 17 if (!t || !t->tm_zone) return ""; in LocalTimezone() 18 return t->tm_zone; in LocalTimezone()
|
/external/python/cpython3/Lib/test/ |
D | test_time.py | 703 if lt.tm_zone is None: 706 self.assertEqual(lt.tm_zone, time.tzname[lt.tm_isdst]) 719 self.assertEqual(new_lt.tm_zone, lt.tm_zone) 722 self.assertEqual(new_lt9.tm_zone, lt.tm_zone) 727 self.assertEqual(t.tm_zone, 'UTC') 740 self.assertIs(lt.tm_zone, None)
|
/external/python/cpython2/Modules/ |
D | timemodule.c | 836 strncpy(janname, p->tm_zone ? p->tm_zone : " ", 9); in inittimezone() 841 strncpy(julyname, p->tm_zone ? p->tm_zone : " ", 9); in inittimezone()
|
/external/u-boot/include/linux/ |
D | time.h | 41 __const char *tm_zone; /* Timezone abbreviation. */ member
|
/external/python/cpython3/Modules/ |
D | timemodule.c | 438 PyUnicode_DecodeLocale(p->tm_zone, "surrogateescape")); in tmtotuple() 585 p->tm_zone = item == Py_None ? NULL : (char*)PyUnicode_AsUTF8(item); in gettmarg() 1525 strncpy(zone, p->tm_zone ? p->tm_zone : " ", n); in get_zone()
|
D | _datetimemodule.c | 5662 zone = local_time_tm.tm_zone; in local_timezone_from_timestamp()
|
/external/libchrome/base/time/ |
D | time_exploded_posix.cc | 190 timestruct.tm_zone = nullptr; // not a POSIX field, so mktime/timegm ignore in FromExploded()
|
/external/python/cpython3/Lib/email/ |
D | utils.py | 365 tz = datetime.timezone(delta, localtm.tm_zone)
|
/external/python/cpython3/Doc/library/ |
D | time.rst | 95 and :attr:`tm_zone` attributes when platform supports corresponding 99 The :class:`struct_time` attributes :attr:`tm_gmtoff` and :attr:`tm_zone` 563 | N/A | :attr:`tm_zone` | abbreviation of timezone name | 863 :attr:`tm_zone` results from :func:`localtime` to obtain timezone information.
|
/external/ImageMagick/config/ |
D | config.h.in | 516 /* Define to 1 if `tm_zone' is a member of `struct tm'. */ 614 /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use 618 /* Define to 1 if you don't have `tm_zone' but do have the external array
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_platform_limits_posix.h | 388 const char *tm_zone; member
|
D | sanitizer_platform_limits_posix.cc | 1115 CHECK_SIZE_AND_OFFSET(tm, tm_zone);
|
D | sanitizer_common_interceptors.inc | 945 if (tm->tm_zone) { 946 // Can not use COMMON_INTERCEPTOR_WRITE_RANGE here, because tm->tm_zone 948 COMMON_INTERCEPTOR_INITIALIZE_RANGE(tm->tm_zone, 949 REAL(strlen(tm->tm_zone)) + 1); 1085 // initialize the entire struct tm. For example, tm_zone pointer is left
|
/external/python/cpython2/ |
D | pyconfig.h.in | 755 /* Define to 1 if `tm_zone' is a member of `struct tm'. */ 886 /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use 893 /* Define to 1 if you don't have `tm_zone' but do have the external array
|
D | configure.ac | 85 # on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone). 4416 # Before we can test tzset, we need to check if struct tm has a tm_zone 4439 tm->tm_zone does not exist since it is the alternative way 4479 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT")) 4481 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
|
D | configure | 14480 tm->tm_zone does not exist since it is the alternative way 14520 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT")) 14522 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
|
/external/python/cpython3/ |
D | pyconfig.h.in | 1011 /* Define to 1 if `tm_zone' is a member of `struct tm'. */ 1172 /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use 1179 /* Define to 1 if you don't have `tm_zone' but do have the external array
|
D | configure.ac | 125 # on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone). 4962 tm->tm_zone does not exist since it is the alternative way 5002 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT")) 5004 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
|
D | configure | 15865 tm->tm_zone does not exist since it is the alternative way 15905 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT")) 15907 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 460 Attributes tm_gmtoff and tm_zone are now available on all platforms in the
|
/external/python/cpython3/Lib/ |
D | datetime.py | 1804 zone = localtm.tm_zone
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 2112 EXPECT_NE(0U, strlen(time->tm_zone)); in TEST() 2124 EXPECT_NE(0U, strlen(time.tm_zone)); in TEST()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1531 :attr:`tm_zone` are now available on all platforms.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 7308 - Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields 7310 time.localtime() and time.strptime() functions now have tm_zone and 19433 - Test in configure.in that checks for tzset no longer dependent on tm->tm_zone
|
/external/python/cpython2/Misc/ |
D | HISTORY | 2049 - Test in configure.in that checks for tzset no longer dependent on tm->tm_zone
|