Home
last modified time | relevance | path

Searched refs:day (Results 301 - 325 of 341) sorted by relevance

1...<<11121314

/third_party/vk-gl-cts/scripts/
H A Dmake_release.py324 return "dEQP-%s-%04d-%02d-%02d-%s" % (releaseName, today.year, today.month, today.day, configName)
/third_party/python/Lib/test/
H A Dtest_logging.py5551 for day in range(7):
5553 self.fn, encoding="utf-8", when='W%d' % day, interval=1, backupCount=0,
5556 if wday > day:
5557 # The rollover day has already passed this week, so we
5559 expected = (7 - wday + day)
5561 expected = (day - wday)
5573 if day == wday:
H A Dtest_httpservers.py1240 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(now)
1243 day,
H A Dtest_dataclasses.py791 day: int
4030 day: 'int'
4045 day: 'int'
/third_party/ffmpeg/libavformat/
H A Ddashdec.c183 int day = 0; in get_utc_date_time_insec() local
193 ret = sscanf(datetime, "%d-%d-%dT%d:%d:%fZ", &year, &month, &day, &hour, &minute, &second); in get_utc_date_time_insec()
194 /* year, month, day, hour, minute, second 6 arguments */ in get_utc_date_time_insec()
200 timeinfo.tm_mday = day; in get_utc_date_time_insec()
/third_party/skia/third_party/externals/libpng/
H A Dpng.c748 ptime->day == 0 || ptime->day > 31 || in png_convert_to_rfc1123_buffer()
762 APPEND_NUMBER(PNG_NUMBER_FORMAT_u, (unsigned)ptime->day); in png_convert_to_rfc1123_buffer()
/third_party/protobuf/ruby/tests/
H A Dcommon_tests.rb1696 def test_time(year, month, day)
1697 str = ("\"%04d-%02d-%02dT00:00:00.000+00:00\"" % [year, month, day])
1699 time = Time.new(year, month, day, 0, 0, 0, "+00:00")
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Ddpp.c1502 tm.year, tm.month, tm.day, in dpp_build_conf_obj_dpp()
2232 unsigned int year, month, day, hour, min, sec; in dpp_key_expired() local
2247 &year, &month, &day, &hour, &min, &sec) != 6) { in dpp_key_expired()
2249 "DPP: Failed to parse expiration day - assume expired key"); in dpp_key_expired()
2253 if (os_mktime(year, month, day, hour, min, sec, &utime) < 0) { in dpp_key_expired()
/third_party/python/Lib/
H A Dplistlib.py140 _dateParser = re.compile(r"(?P<year>\d\d\d\d)(?:-(?P<month>\d\d)(?:-(?P<day>\d\d)(?:T(?P<hour>\d\d)(?::(?P<minute>\d\d)(?::(?P<second>\d\d))?)?)?)?)?Z", re.ASCII)
144 order = ('year', 'month', 'day', 'hour', 'minute', 'second')
157 d.year, d.month, d.day,
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dieee802_11_shared.c678 *pos++ = tm.day; /* Day of month */ in hostapd_update_time_adv()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dieee802_11_shared.c662 *pos++ = tm.day; /* Day of month */ in hostapd_update_time_adv()
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttinterp.c6552 dax, day, in Ins_ISECT() local
6584 day = SUB_LONG( exc->zp1.cur[a1].y, exc->zp1.cur[a0].y ); in Ins_ISECT()
6590 FT_MulDiv( day, dbx, 0x40 ) ); in Ins_ISECT()
6592 FT_MulDiv( day, dby, 0x40 ) ); in Ins_ISECT()
6608 R.y = FT_MulDiv( val, day, discriminant ); in Ins_ISECT()
/third_party/icu/icu4c/source/i18n/
H A Dtimezone.cpp721 // the given time in day is local standard time. in getOffset()
733 double day = ClockMath::floorDivide(date, U_MILLIS_PER_DAY, &millis); in getOffset() local
735 Grego::dayToFields(day, year, month, dom, dow); in getOffset()
/third_party/mbedtls/library/
H A Dx509_crt.c1790 crt->valid_from.day, crt->valid_from.hour, in mbedtls_x509_crt_info()
1797 crt->valid_to.day, crt->valid_to.hour, in mbedtls_x509_crt_info()
/third_party/node/deps/icu-small/source/i18n/
H A Dtimezone.cpp721 // the given time in day is local standard time. in getOffset()
733 double day = ClockMath::floorDivide(date, U_MILLIS_PER_DAY, &millis); in getOffset() local
735 Grego::dayToFields(day, year, month, dom, dow); in getOffset()
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/regres/
H A Dmain.go22 // Once a day regres will also test another, larger set of tests, and post the
1610 day int
1615 d.year, d.month, d.day = t.Date()
/third_party/node/deps/v8/src/objects/
H A Djs-objects.cc5463 return day(); in DoGetField()
5512 int year, month, day; in GetUTCField() local
5513 date_cache->YearMonthDayFromDays(days, &year, &month, &day); in GetUTCField()
5517 return Smi::FromInt(day); in GetUTCField()
5570 int year, month, day; in SetCachedFields() local
5571 date_cache->YearMonthDayFromDays(days, &year, &month, &day); in SetCachedFields()
5579 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); in SetCachedFields()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DCalendarRegressionTest.java511 int sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; in Test4096231()
544 cal3.set(year, month, day, hr, min, sec); in Test4096231()
613 logln(testDesc + " => 1st day of week=" + in Test4103271()
1017 b.setFirstDayOfWeek((a.getFirstDayOfWeek() % 7) + 1); // Next day in Test4136399()
1019 errln("Calendar hash code ignores first day of week"); in Test4136399()
1273 * GregorianCalendar.getActualMaximum() does not account for first day of
1299 logln("First day of week = " + firstInWeek + in Test4166109()
1726 // Set the calendar to the first day of the last week in Test4288792()
1730 // to advance through the week. For each day, call in Test4288792()
1750 // Now advance the calendar one more day in Test4288792()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DCalendarRegressionTest.java514 int sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; in Test4096231()
547 cal3.set(year, month, day, hr, min, sec); in Test4096231()
616 logln(testDesc + " => 1st day of week=" + in Test4103271()
1020 b.setFirstDayOfWeek((a.getFirstDayOfWeek() % 7) + 1); // Next day in Test4136399()
1022 errln("Calendar hash code ignores first day of week"); in Test4136399()
1276 * GregorianCalendar.getActualMaximum() does not account for first day of
1302 logln("First day of week = " + firstInWeek + in Test4166109()
1729 // Set the calendar to the first day of the last week in Test4288792()
1733 // to advance through the week. For each day, call in Test4288792()
1753 // Now advance the calendar one more day in Test4288792()
[all...]
/third_party/python/Lib/test/test_zoneinfo/
H A Dtest_zoneinfo.py101 dt.day,
427 dt.day,
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_lookup_test.cc648 EXPECT_EQ(d, al.cs.day()); \
940 EXPECT_EQ(tp, convert(civil_second(2009, 1, 44, 18, 31, 30), tz)); // day in TEST()
1284 // At the end of December 2011, Samoa jumped forward by one day, in TEST()
1288 // A one-day, non-DST offset change in TEST()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...
/third_party/node/deps/v8/src/init/
H A Dbootstrapper.cc4837 V(day, Day) \ in InitializeGlobal_harmony_temporal()
4964 V(day, Day) \ in InitializeGlobal_harmony_temporal()
5042 V(day, Day) \ in InitializeGlobal_harmony_temporal()
5276 V(day, Day) in InitializeGlobal_harmony_temporal()
5362 V(day, Day, 1) \ in InitializeGlobal_harmony_temporal()
/third_party/node/deps/v8/src/diagnostics/
H A Dobjects-printer.cc1367 day().IsSmi() ? Smi::ToInt(day()) : -1, in JSDatePrint()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/
H A DTimeZoneTest.java932 // test the day-of-month API in TestAlternateRules()
960 // test the day-of-week-after-day-in-month API in TestAlternateRules()
1374 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {return 0;} in TestCoverage()
1461 // int year, month, day, hour, minute, second, offsetHours in TestFebruary()

Completed in 91 milliseconds

1...<<11121314