/third_party/node/deps/undici/src/lib/cookies/ |
H A D | util.js | 119 IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT 123 day-name = %x4D.6F.6E ; "Mon", case-sensitive 130 date1 = day SP month SP year 133 day = 2DIGIT 150 time-of-day = hour ":" minute ":" second 173 const day = date.getUTCDate().toString().padStart(2, '0') 180 return `${dayName}, ${day} ${month} ${year} ${hour}:${minute}:${second} GMT`
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | olsontz.h | 170 int32_t day, uint8_t dayOfWeek, 177 int32_t day, uint8_t dayOfWeek,
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | rbtz.h | 145 * @param day The reference date's day-in-month (1-based) 146 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday) 147 * @param millis The reference date's milliseconds in day, local standard time 152 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 166 * @param day The reference date's day-in-month (1-based) 167 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday) 168 * @param millis The reference date's milliseconds in day, local standard time 174 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | os_unix.c | 128 int os_mktime(int year, int month, int day, int hour, int min, int sec, in os_mktime() argument 135 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || in os_mktime() 143 tm.tm_mday = day; in os_mktime() 179 tm->day = tm2->tm_mday; in os_gmtime()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | os_unix.c | 134 int os_mktime(int year, int month, int day, int hour, int min, int sec, in os_mktime() argument 141 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || in os_mktime() 149 tm.tm_mday = day; in os_mktime() 185 tm->day = tm2->tm_mday; in os_gmtime()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | utmstest.c | 355 int32_t day; member 366 /* year, month, day, ticks */ 448 const int32_t dayMillis = 86400 * INT64_C(1000); /* 1 day = 86400 seconds */ in TestDotNet() 471 ucal_setDate(cal, dt->year, dt->month - 1, dt->day, &errorCode); /* Java & ICU use January = month 0. */ in TestDotNet() 476 (int)i, (int)(millis/dayMillis), (int)(icuDate/dayMillis), (int)dt->year, (int)dt->month, (int)dt->day); in TestDotNet() 484 (int)i, (int)(ticks/dayTicks), (int)(dt->ticks/dayTicks), (int)dt->year, (int)dt->month, (int)dt->day); in TestDotNet()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | ChineseCalendar.java | 390 * WEEK_OF_MONTH In a 29 day month, if the first 7 days make up week 1 391 * that leaves 3 full weeks and 1 day at the end. The least maximum is 398 * DAY_OF_WEEK_IN_MONTH In a 29 or 30 day month, there are 4 full weeks 466 EPOCH_JULIAN_DAY + 1; // Julian day -> local days in handleGetMonthLength() 521 * start position, pinning the day of month if necessary. The start 523 * and a day-of-month. Used by add() and roll(). 524 * @param newMoon the local days of the first day of the month of the 526 * @param dom the 1-based day-of-month of the start position 566 int day = get(JULIAN_DAY) - EPOCH_JULIAN_DAY; // Get local day in add() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
H A D | HebrewTest.java | 55 // year month day field amount year month day in TestRoll() 71 { 5757, KISLEV, 1, DATE, 30, 5757, KISLEV, 2 }, // 29-day month in TestRoll() 72 { 5758, KISLEV, 1, DATE, 31, 5758, KISLEV, 2 }, // 30-day month in TestRoll() 100 // year month day field amount year month day in TestAdd() 118 { 5757, KISLEV, 1, DATE, 30, 5757, TEVET, 2 }, // 29-day month in TestAdd() 119 { 5758, KISLEV, 1, DATE, 31, 5758, TEVET, 2 }, // 30-day month in TestAdd() 490 int day = 15; in Test1624() 491 hc = new HebrewCalendar (year, month, day); in Test1624() [all...] |
H A D | IslamicTest.java | 57 // year month day field amount year month day in TestRoll() 65 { 0001, HIJJAH, 1, DATE, 30, 0001, HIJJAH, 2 }, // 29-day month in TestRoll() 66 { 0002, HIJJAH, 1, DATE, 31, 0002, HIJJAH, 2 }, // 30-day month in TestRoll() 351 int day = cal.get(Calendar.DAY_OF_MONTH); in setAndTestCalendar() 354 if(initDay != day || initMonth != month || initYear != year) in setAndTestCalendar() 357 errln("values post set():\tmonth "+month+"\tday "+day+"\tyear "+year); in setAndTestCalendar() 819 int day=0, month=0, year=0, initDay = 27, initMonth = IslamicCalendar.RAJAB, initYear = 1434; in TestIslamicUmAlQura() 836 day = tstCal.get(Calendar.DAY_OF_MONTH); in TestIslamicUmAlQura() 841 if(day ! in TestIslamicUmAlQura() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | ChineseCalendar.java | 380 * WEEK_OF_MONTH In a 29 day month, if the first 7 days make up week 1 381 * that leaves 3 full weeks and 1 day at the end. The least maximum is 388 * DAY_OF_WEEK_IN_MONTH In a 29 or 30 day month, there are 4 full weeks 453 EPOCH_JULIAN_DAY + 1; // Julian day -> local days in handleGetMonthLength() 505 * start position, pinning the day of month if necessary. The start 507 * and a day-of-month. Used by add() and roll(). 508 * @param newMoon the local days of the first day of the month of the 510 * @param dom the 1-based day-of-month of the start position 549 int day = get(JULIAN_DAY) - EPOCH_JULIAN_DAY; // Get local day in add() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/ |
H A D | HebrewTest.java | 58 // year month day field amount year month day in TestRoll() 74 { 5757, KISLEV, 1, DATE, 30, 5757, KISLEV, 2 }, // 29-day month in TestRoll() 75 { 5758, KISLEV, 1, DATE, 31, 5758, KISLEV, 2 }, // 30-day month in TestRoll() 103 // year month day field amount year month day in TestAdd() 121 { 5757, KISLEV, 1, DATE, 30, 5757, TEVET, 2 }, // 29-day month in TestAdd() 122 { 5758, KISLEV, 1, DATE, 31, 5758, TEVET, 2 }, // 30-day month in TestAdd() 493 int day = 15; in Test1624() 494 hc = new HebrewCalendar (year, month, day); in Test1624() [all...] |
H A D | IBMCalendarTest.java | 573 // In pass one, change the first day of week so that the weeks in TestWeekShift() 633 * Make sure that when adding a day, we actually wind up in a 634 * different day. The DST adjustments we use to keep the hour 635 * constant across DST changes can backfire and change the day. 692 this.data = data; // year, month, week of month, day in TestJB1684() 933 // can't call this unless we get a transition day (unusual), in TestCoverage() 1001 assertEquals("Julian max day -1", julianDay, Calendar.MAX_JULIAN - 1); in TestCoverage() 1028 assertEquals("handleComputeFields: day set", 2, get(DAY_OF_MONTH)); in TestCoverage() 1183 private int day; field in IBMCalendarTest.CalFields 1189 CalFields(int year, int month, int day, in argument 1193 CalFields(int year, int month, int day, int hour, int min, int sec, int ms) CalFields() argument [all...] |
H A D | IslamicTest.java | 60 // year month day field amount year month day in TestRoll() 68 { 0001, HIJJAH, 1, DATE, 30, 0001, HIJJAH, 2 }, // 29-day month in TestRoll() 69 { 0002, HIJJAH, 1, DATE, 31, 0002, HIJJAH, 2 }, // 30-day month in TestRoll() 354 int day = cal.get(Calendar.DAY_OF_MONTH); in setAndTestCalendar() 357 if(initDay != day || initMonth != month || initYear != year) in setAndTestCalendar() 360 errln("values post set():\tmonth "+month+"\tday "+day+"\tyear "+year); in setAndTestCalendar() 822 int day=0, month=0, year=0, initDay = 27, initMonth = IslamicCalendar.RAJAB, initYear = 1434; in TestIslamicUmAlQura() 839 day = tstCal.get(Calendar.DAY_OF_MONTH); in TestIslamicUmAlQura() 844 if(day ! in TestIslamicUmAlQura() [all...] |
/third_party/rust/crates/humantime/src/ |
H A D | date.rs | 121 let day = two_digits(b[8], b[9])?; in parse_rfc3339_weak() 152 if day > mdays || day == 0 { in parse_rfc3339_weak() 155 ydays += day - 1; in parse_rfc3339_weak() 487 for day in 0..= 365 * 2 { // scan leap year and non-leap year in first_731_days() 488 let (s, time) = from_sec(year_start + day * 86400); in first_731_days() 497 for day in 0..= 365 * 2 { // scan leap year and non-leap year in the_731_consecutive_days() 498 let (s, time) = from_sec(year_start + day * 86400); in the_731_consecutive_days()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateIntervalFormatTest.java | 728 * Test handling of hour and day period metacharacters 739 // that all of the special skeleton characters for hours and day periods work as expected in TestHourMetacharacters() 741 // - If a, b, or B is included in the skeleton, it correctly sets the length of the day-period field in TestHourMetacharacters() 745 // intended effect on the length of the day period field (if there is one) in TestHourMetacharacters() 746 // - If J is included, it correctly suppresses the day period field if j would include it in TestHourMetacharacters() 747 // - If C is included, it behaves the same as j and brings up the correct day period field in TestHourMetacharacters() 748 // - In all cases, if the day period of both ends of the range is the same, you only see it once in TestHourMetacharacters() 843 // regression test for ICU-21984 (multiple day-period characters in date-interval patterns) in TestHourMetacharacters() 991 final long day = 24*60*60*1000; // milliseconds in a day in TestContext() [all...] |
/third_party/python/Lib/http/ |
H A D | cookiejar.py | 111 dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second) 129 DAYS[dt.weekday()], dt.day, MONTHS[dt.month-1], 150 def _str2time(day, mon, yr, hr, min, sec, tz): 175 day = int(day) 192 t = _timegm((yr, mon, day, hr, min, sec, tz)) 213 (\d\d?) # day 277 day, mon, yr, hr, min, sec, tz = [None]*7 282 day, mon, yr, hr, min, sec, tz = m.groups() 286 return _str2time(day, mo [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | calcasts.h | 10 * conversion between julian-day to fields and vice versa. 34 int32_t day; member
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | time.h | 44 int day; member
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | JavaTimeZone.java | 111 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) { in getOffset() argument 112 return javatz.getOffset(era, year, month, day, dayOfWeek, milliseconds); in getOffset()
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | timezone.h | 540 * @param day The reference date's day-in-month (1-based) 541 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday) 542 * @param millis The reference date's milliseconds in day, local standard time 547 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 562 * @param day the day-in-month of the given date. 563 * @param dayOfWeek the day-of-week of the given date. 564 * @param milliseconds the millis in day in <em>standard</em> local time. 570 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, [all...] |
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/ |
H A D | TimeZoneJDK.java | 88 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) { in getOffset() argument 89 return fJdkTz.getOffset(era, year, month, day, dayOfWeek, milliseconds); in getOffset()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | JavaTimeZone.java | 113 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) { in getOffset() argument 114 return javatz.getOffset(era, year, month, day, dayOfWeek, milliseconds); in getOffset()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | japancal.cpp | 173 int32_t day = 1; in getDefaultDayInMonth() local 185 return day; in getDefaultDayInMonth()
|
H A D | olsontz.h | 170 int32_t day, uint8_t dayOfWeek, 177 int32_t day, uint8_t dayOfWeek,
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | timezone.h | 571 * @param day The reference date's day-in-month (1-based) 572 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday) 573 * @param millis The reference date's milliseconds in day, local standard time 578 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 593 * @param day the day-in-month of the given date. 594 * @param dayOfWeek the day-of-week of the given date. 595 * @param milliseconds the millis in day in <em>standard</em> local time. 601 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, [all...] |