Home
last modified time | relevance | path

Searched refs:gmt (Results 1 – 25 of 43) sorted by relevance

12

/third_party/boost/libs/locale/test/
Dtest_formatting.cpp313 TEST_FP2(as::date, as::gmt,a_datetime,"Feb 5, 1970",time_t,a_date); in test_manip()
314 TEST_FP3(as::date,as::date_short ,as::gmt,a_datetime,"2/5/70",time_t,a_date); in test_manip()
315 TEST_FP3(as::date,as::date_medium,as::gmt,a_datetime,"Feb 5, 1970",time_t,a_date); in test_manip()
316 TEST_FP3(as::date,as::date_long ,as::gmt,a_datetime,"February 5, 1970",time_t,a_date); in test_manip()
317 … TEST_FP3(as::date,as::date_full ,as::gmt,a_datetime,"Thursday, February 5, 1970",time_t,a_date); in test_manip()
327 TEST_FP2(as::time, as::gmt,a_datetime,"3:33:13 PM",time_t,a_time+a_timesec); in test_manip()
328 TEST_FP3(as::time,as::time_short ,as::gmt,a_datetime,"3:33 PM",time_t,a_time); in test_manip()
329 TEST_FP3(as::time,as::time_medium,as::gmt,a_datetime,"3:33:13 PM",time_t,a_time+a_timesec); in test_manip()
331 TEST_FP3(as::time,as::time_long ,as::gmt,a_datetime,"3:33:13 PM GMT",time_t,a_time+a_timesec); in test_manip()
334 …TEST_FP3(as::time,as::time_full ,as::gmt,a_datetime,"3:33:13 PM " GMT_FULL,time_t,a_time+a_timese… in test_manip()
[all …]
/third_party/curl/docs/examples/
Dsynctime.c303 struct tm *gmt; in main() local
318 gmt = gmtime(&tt); in main()
319 tt_gmt = mktime(gmt); in main()
/third_party/openssl/crypto/asn1/
Da_time.c472 int gmt = 0, l; in ASN1_TIME_print() local
484 gmt = 1; in ASN1_TIME_print()
504 (gmt ? " GMT" : "")) > 0; in ASN1_TIME_print()
509 (gmt ? " GMT" : "")) > 0; in ASN1_TIME_print()
/third_party/tzdata/
Dlocaltime.c88 static const char gmt[] = "GMT"; variable
133 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
291 tzname[0] = tzname[1] = (char *) (sp ? wildabbr : gmt); in settzname()
1083 stdlen = sizeof gmt - 1; in tzparse()
1325 if (tzload(gmt, sp, true) != 0) in gmtload()
1326 tzparse(gmt, sp, true); in gmtload()
1344 strcpy(sp->chars, gmt); in zoneinit()
1591 (offset ? wildabbr : gmtptr ? gmtptr->chars : gmt)); in gmtsub()
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/
Dlocaltime.c66 static const char gmt[] = "GMT"; variable
111 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
266 tzname[0] = tzname[1] = (char *) gmt; in settzname()
1170 if (tzload(gmt, sp, TRUE) != 0) in gmtload()
1171 (void) tzparse(gmt, sp, TRUE); in gmtload()
1238 (void) strcpy(lclptr->chars, gmt); in tzset()
1373 tmp->TM_ZONE = offset ? wildabbr : gmtptr ? gmtptr->chars : gmt; in gmtsub()
Dzdump.c985 struct tm gmt; in dumptimeICU() local
1009 gmt = *gmtime(&t); in dumptimeICU()
1010 offset = delta(&loc, &gmt); in dumptimeICU()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dlocaltime.c66 static const char gmt[] = "GMT"; variable
111 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
266 tzname[0] = tzname[1] = (char *) gmt; in settzname()
1170 if (tzload(gmt, sp, TRUE) != 0) in gmtload()
1171 (void) tzparse(gmt, sp, TRUE); in gmtload()
1238 (void) strcpy(lclptr->chars, gmt); in tzset()
1373 tmp->TM_ZONE = offset ? wildabbr : gmtptr ? gmtptr->chars : gmt; in gmtsub()
Dzdump.c985 struct tm gmt; in dumptimeICU() local
1009 gmt = *gmtime(&t); in dumptimeICU()
1010 offset = delta(&loc, &gmt); in dumptimeICU()
/third_party/icu/icu4c/source/tools/tzcode/
Dlocaltime.c66 static const char gmt[] = "GMT"; variable
111 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
266 tzname[0] = tzname[1] = (char *) gmt; in settzname()
1170 if (tzload(gmt, sp, TRUE) != 0) in gmtload()
1171 (void) tzparse(gmt, sp, TRUE); in gmtload()
1238 (void) strcpy(lclptr->chars, gmt); in tzset()
1373 tmp->TM_ZONE = offset ? wildabbr : gmtptr ? gmtptr->chars : gmt; in gmtsub()
Dzdump.c985 struct tm gmt; in dumptimeICU() local
1009 gmt = *gmtime(&t); in dumptimeICU()
1010 offset = delta(&loc, &gmt); in dumptimeICU()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dmeasfmt.cpp77 const TimeZone *gmt = TimeZone::getGMT(); in NumericDateFormatters() local
78 hourMinute.setTimeZone(*gmt); in NumericDateFormatters()
79 minuteSecond.setTimeZone(*gmt); in NumericDateFormatters()
80 hourMinuteSecond.setTimeZone(*gmt); in NumericDateFormatters()
/third_party/boost/libs/locale/doc/
Dlocalized_text_formatting.txt114 - \c gmt - display the time in UTC time scale
116 cout << format("Local time is: {1,time,local}, universal time is {1,time,gmt}") % time;
Dformatting_and_parsing.txt97 - \c as::gmt -- display date and time in GMT.
107 cout << as::gmt << "GMT Time is: "<< now <<endl;
/third_party/python/Lib/test/
Dtest_strftime.py36 self.gmt = time.gmtime(now)
/third_party/boost/libs/locale/src/shared/
Dformat.cpp156 as::gmt(ios_); in set_one_flag()
/third_party/ffmpeg/libavformat/
Dwebmdashenc.c101 struct tm *gmt = gmtime_r(&local_time, &gmt_buffer); in write_header() local
103 if (!strftime(gmt_iso, 21, "%Y-%m-%dT%H:%M:%SZ", gmt)) { in write_header()
/third_party/boost/tools/quickbook/src/
Dquickbook.cpp471 static tm gmt = *gmtime(&t); in main() local
473 quickbook::current_gm_time = &gmt; in main()
/third_party/icu/icu4c/source/test/intltest/
Ddtfmrgts.cpp927 TimeZone *gmt = timeZone->clone(); in Test4106807() local
929 gmt->setRawOffset(0); in Test4106807()
935 format->setTimeZone(*gmt); in Test4106807()
964 delete gmt; in Test4106807()
Dtztest.cpp2433 const TimeZone *gmt = TimeZone::getGMT(); in TestGetGMT() local
2436 assertEquals("getGMT() wrong ID", expectedID, gmt->getID(id)); in TestGetGMT()
2437 assertTrue("getGMT() wrong offset", 0 == gmt->getRawOffset()); in TestGetGMT()
2438 assertFalse("getGMT() uses DST", gmt->useDaylightTime()); in TestGetGMT()
/third_party/boost/boost/locale/
Dformatting.hpp610 inline std::ios_base &gmt(std::ios_base &ios) in gmt() function
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DDateFormatRegressionTest.java642 TimeZone gmt = (TimeZone) timeZone.clone(); in Test4106807() local
643 gmt.setRawOffset(0); in Test4106807()
648 format.setTimeZone(gmt); in Test4106807()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatRegressionTest.java639 TimeZone gmt = (TimeZone) timeZone.clone(); in Test4106807() local
640 gmt.setRawOffset(0); in Test4106807()
645 format.setTimeZone(gmt); in Test4106807()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneFormat.java2471 for (String gmt : ALT_GMT_STRINGS) {
2472 int len = gmt.length();
2473 if (text.regionMatches(true, idx, gmt, 0, len)) {
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DTimeZoneFormat.java2401 for (String gmt : ALT_GMT_STRINGS) {
2402 int len = gmt.length();
2403 if (text.regionMatches(true, idx, gmt, 0, len)) {
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DCompatibilityTest.java75 TimeZone gmt = TimeZone.getTimeZone("GMT"); in TestGregorianChangeover() local
76 GregorianCalendar cal = new GregorianCalendar(gmt); in TestGregorianChangeover()

12