/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | time_zone_posix.cc | 105 res->date.fmt = PosixTransition::M; in ParseDateTime() 106 res->date.m.month = static_cast<std::int_fast8_t>(month); in ParseDateTime() 107 res->date.m.week = static_cast<std::int_fast8_t>(week); in ParseDateTime() 108 res->date.m.weekday = static_cast<std::int_fast8_t>(weekday); in ParseDateTime() 115 res->date.fmt = PosixTransition::J; in ParseDateTime() 116 res->date.j.day = static_cast<std::int_fast16_t>(day); in ParseDateTime() 121 res->date.fmt = PosixTransition::N; in ParseDateTime() 122 res->date.n.day = static_cast<std::int_fast16_t>(day); in ParseDateTime()
|
/third_party/typescript/tests/baselines/reference/tsbuild/sample1/ |
H A D | can-detect-when-and-what-to-rebuild.js | 395 [[90m12:00:27 AM[0m] Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than output 'src/core/tsconfig.tsbuildinfo'
397 [[90m12:00:28 AM[0m] Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than output 'src/logic/tsconfig.tsbuildinfo'
399 [[90m12:00:29 AM[0m] Project 'src/tests/tsconfig.json' is up to date because newest input 'src/tests/index.ts' is older than output 'src/tests/tsconfig.tsbuildinfo'
420 [[90m12:00:32 AM[0m] Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than output 'src/core/tsconfig.tsbuildinfo'
422 [[90m12:00:33 AM[0m] Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than output 'src/logic/tsconfig.tsbuildinfo'
424 [[90m12:00:34 AM[0m] Project 'src/tests/tsconfig.json' is out of date because output 'src/tests/tsconfig.tsbuildinfo' is older than input 'src/tests/index.ts'
497 [[90m12:00:43 AM[0m] Project 'src/core/tsconfig.json' is out of date because output 'src/core/tsconfig.tsbuildinfo' is older than input 'src/core/index.ts'
501 [[90m12:00:50 AM[0m] Project 'src/logic/tsconfig.json' is up to date with .d.ts files from its dependencies
505 [[90m12:00:54 AM[0m] Project 'src/tests/tsconfig.json' is up to date with .d.ts files from its dependencies
608 [[90m12:01:00 AM[0m] Project 'src/core/tsconfig.json' is up to date becaus [all...] |
/third_party/node/test/parallel/ |
H A D | test-assert-checktag.js | 16 const date = new Date('2016'); 21 assert.notDeepEqual(date, fake); 22 assert.notDeepEqual(fake, date); 25 // then reveal the fakeness of the fake date 27 () => assert.deepStrictEqual(date, fake), 34 () => assert.deepStrictEqual(fake, date),
|
/kernel/linux/linux-5.10/drivers/rtc/ |
H A D | rtc-spear.c | 66 /* date reg equal to time reg, for debug only */ 197 * @tm: holds date and time 199 * This function read time and date. On success it will return 0 205 unsigned int time, date; in spear_rtc_read_time() local 211 date = readl(config->ioaddr + DATE_REG); in spear_rtc_read_time() 215 tm->tm_mday = (date >> MDAY_SHIFT) & DAY_MASK; in spear_rtc_read_time() 216 tm->tm_mon = (date >> MONTH_SHIFT) & MONTH_MASK; in spear_rtc_read_time() 217 tm->tm_year = (date >> YEAR_SHIFT) & YEAR_MASK; in spear_rtc_read_time() 226 * @tm: holds date and time 228 * This function set time and date 234 unsigned int time, date; spear_rtc_set_time() local 260 unsigned int time, date; spear_rtc_read_alarm() local 290 unsigned int time, date; spear_rtc_set_alarm() local [all...] |
H A D | rtc-rv8803.c | 193 u8 *date = date1; in rv8803_get_time() local 205 ret = rv8803_read_regs(rv8803->client, RV8803_SEC, 7, date); in rv8803_get_time() 215 date = date2; in rv8803_get_time() 218 tm->tm_sec = bcd2bin(date[RV8803_SEC] & 0x7f); in rv8803_get_time() 219 tm->tm_min = bcd2bin(date[RV8803_MIN] & 0x7f); in rv8803_get_time() 220 tm->tm_hour = bcd2bin(date[RV8803_HOUR] & 0x3f); in rv8803_get_time() 221 tm->tm_wday = ilog2(date[RV8803_WEEK] & 0x7f); in rv8803_get_time() 222 tm->tm_mday = bcd2bin(date[RV8803_DAY] & 0x3f); in rv8803_get_time() 223 tm->tm_mon = bcd2bin(date[RV8803_MONTH] & 0x1f) - 1; in rv8803_get_time() 224 tm->tm_year = bcd2bin(date[RV8803_YEA in rv8803_get_time() 232 u8 date[7]; rv8803_set_time() local [all...] |
H A D | rtc-sunxi.c | 55 * Get date values 76 * Set date values 191 u32 date; in sunxi_rtc_getalarm() local 194 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_getalarm() 200 alrm_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); in sunxi_rtc_getalarm() 201 alrm_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); in sunxi_rtc_getalarm() 202 alrm_tm->tm_year = SUNXI_DATE_GET_YEAR_VALUE(date, in sunxi_rtc_getalarm() 223 u32 date, time; in sunxi_rtc_gettime() local 229 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_gettime() 231 } while ((date ! in sunxi_rtc_gettime() 331 u32 date = 0; sunxi_rtc_settime() local [all...] |
/kernel/linux/linux-6.6/drivers/rtc/ |
H A D | rtc-spear.c | 63 /* date reg equal to time reg, for debug only */ 194 * @tm: holds date and time 196 * This function read time and date. On success it will return 0 202 unsigned int time, date; in spear_rtc_read_time() local 209 date = readl(config->ioaddr + DATE_REG); in spear_rtc_read_time() 214 tm->tm_mday = (date >> MDAY_SHIFT) & DAY_MASK; in spear_rtc_read_time() 215 tm->tm_mon = (date >> MONTH_SHIFT) & MONTH_MASK; in spear_rtc_read_time() 216 tm->tm_year = (date >> YEAR_SHIFT) & YEAR_MASK; in spear_rtc_read_time() 225 * @tm: holds date and time 227 * This function set time and date 233 unsigned int time, date; spear_rtc_set_time() local 259 unsigned int time, date; spear_rtc_read_alarm() local 289 unsigned int time, date; spear_rtc_set_alarm() local [all...] |
H A D | rtc-rv8803.c | 239 u8 *date = date1; in rv8803_get_time() local 256 ret = rv8803_read_regs(rv8803->client, RV8803_SEC, 7, date); in rv8803_get_time() 266 date = date2; in rv8803_get_time() 269 tm->tm_sec = bcd2bin(date[RV8803_SEC] & 0x7f); in rv8803_get_time() 270 tm->tm_min = bcd2bin(date[RV8803_MIN] & 0x7f); in rv8803_get_time() 271 tm->tm_hour = bcd2bin(date[RV8803_HOUR] & 0x3f); in rv8803_get_time() 272 tm->tm_wday = ilog2(date[RV8803_WEEK] & 0x7f); in rv8803_get_time() 273 tm->tm_mday = bcd2bin(date[RV8803_DAY] & 0x3f); in rv8803_get_time() 274 tm->tm_mon = bcd2bin(date[RV8803_MONTH] & 0x1f) - 1; in rv8803_get_time() 275 tm->tm_year = bcd2bin(date[RV8803_YEA in rv8803_get_time() 283 u8 date[7]; rv8803_set_time() local [all...] |
H A D | rtc-sunxi.c | 53 * Get date values 74 * Set date values 189 u32 date; in sunxi_rtc_getalarm() local 192 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_getalarm() 198 alrm_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); in sunxi_rtc_getalarm() 199 alrm_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); in sunxi_rtc_getalarm() 200 alrm_tm->tm_year = SUNXI_DATE_GET_YEAR_VALUE(date, in sunxi_rtc_getalarm() 221 u32 date, time; in sunxi_rtc_gettime() local 227 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_gettime() 229 } while ((date ! in sunxi_rtc_gettime() 329 u32 date = 0; sunxi_rtc_settime() local [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | tzbdtest.cpp | 326 UDate d = date(97, UCAL_APRIL, 6); in TestBoundaries() 343 findDaylightBoundaryUsingDate(date(97, 0, 1), "PST", PST_1997_BEG); in TestBoundaries() 345 findDaylightBoundaryUsingDate(date(97, 6, 1), "PDT", PST_1997_END); in TestBoundaries() 353 findDaylightBoundaryUsingTimeZone(date(97, 0, 1), true, 859653000000.0, z); in TestBoundaries() 355 findDaylightBoundaryUsingTimeZone(date(97, 6, 1), false, 877797000000.0, z); in TestBoundaries() 363 findDaylightBoundaryUsingTimeZone(date(97, 0, 1), false, PST_1997_BEG); in TestBoundaries() 365 findDaylightBoundaryUsingTimeZone(date(97, 6, 1), true, PST_1997_END); in TestBoundaries() 372 logln(UnicodeString("") + z->getOffset(1, 97, 3, 4, 6, 0) + " " + date(97, 3, 4)); in TestBoundaries() 373 logln(UnicodeString("") + z->getOffset(1, 97, 3, 5, 7, 0) + " " + date(97, 3, 5)); in TestBoundaries() 374 logln(UnicodeString("") + z->getOffset(1, 97, 3, 6, 1, 0) + " " + date(9 in TestBoundaries() [all...] |
H A D | tsdate.cpp | 151 UDate date[DEPTH]; in tryDate() local 162 date[0] = theDate; in tryDate() 175 date[i] = fFormat->parse(string[i-1], status); in tryDate() 184 fFormat->format(date[i], string[i]); in tryDate() 185 if (dateMatch == 0 && date[i] == date[i-1]) in tryDate() 187 else if (dateMatch > 0 && date[i] != date[i-1]) in tryDate() 214 errln((UnicodeString)"**** FAIL: No string and/or date match within " + fLimit in tryDate() 223 logln((UnicodeString)"" + k + ": " + date[ in tryDate() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | datefmt.cpp | 203 UDate date = 0; in format() 207 date = obj.getDate(); in format() 210 date = (UDate)obj.getDouble(); in format() 213 date = (UDate)obj.getLong(); in format() 224 return format(date, appendTo, fieldPosition); in format() 238 UDate date = 0; in format() 242 date = obj.getDate(); in format() 245 date = (UDate)obj.getDouble(); in format() 248 date = (UDate)obj.getLong(); in format() 259 return format(date, appendT in format() 279 format(UDate date, UnicodeString& appendTo, FieldPosition& fieldPosition) const format() argument 298 format(UDate date, UnicodeString& appendTo, FieldPositionIterator* posIter, UErrorCode& status) const format() argument 316 format(UDate date, UnicodeString& appendTo) const format() argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | datefmt.cpp | 202 UDate date = 0; in format() 206 date = obj.getDate(); in format() 209 date = (UDate)obj.getDouble(); in format() 212 date = (UDate)obj.getLong(); in format() 223 return format(date, appendTo, fieldPosition); in format() 237 UDate date = 0; in format() 241 date = obj.getDate(); in format() 244 date = (UDate)obj.getDouble(); in format() 247 date = (UDate)obj.getLong(); in format() 258 return format(date, appendT in format() 278 format(UDate date, UnicodeString& appendTo, FieldPosition& fieldPosition) const format() argument 297 format(UDate date, UnicodeString& appendTo, FieldPositionIterator* posIter, UErrorCode& status) const format() argument 315 format(UDate date, UnicodeString& appendTo) const format() argument [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | datefmt.cpp | 205 UDate date = 0; in format() 209 date = obj.getDate(); in format() 212 date = (UDate)obj.getDouble(); in format() 215 date = (UDate)obj.getLong(); in format() 226 return format(date, appendTo, fieldPosition); in format() 240 UDate date = 0; in format() 244 date = obj.getDate(); in format() 247 date = (UDate)obj.getDouble(); in format() 250 date = (UDate)obj.getLong(); in format() 261 return format(date, appendT in format() 281 format(UDate date, UnicodeString& appendTo, FieldPosition& fieldPosition) const format() argument 300 format(UDate date, UnicodeString& appendTo, FieldPositionIterator* posIter, UErrorCode& status) const format() argument 318 format(UDate date, UnicodeString& appendTo) const format() argument [all...] |
/third_party/rust/crates/humantime/src/ |
H A D | lib.rs | 24 mod date; modules 29 pub use self::date::{parse_rfc3339, parse_rfc3339_weak, Error as TimestampError}; 30 pub use self::date::{ 34 pub use self::date::{Rfc3339Timestamp};
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | IntlTestDateFormat.java | 99 errln("FAIL: localeTest date getTimeInstance exception"); in localeTest() 112 errln("FAIL: localeTest date/time getDateTimeInstance exception"); in localeTest() 153 Date[] date = new Date[DEPTH]; in tryDate() 162 if (i == 0) date[i] = theDate; in tryDate() 165 date[i] = fFormat.parse(string[i-1].toString()); in tryDate() 175 fFormat.format(date[i], string[i], position); in tryDate() 177 if (dateMatch == 0 && date[i] == date[i-1]) dateMatch = i; in tryDate() 178 else if (dateMatch > 0 && date[i] != date[ in tryDate() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | IntlTestDateFormat.java | 102 errln("FAIL: localeTest date getTimeInstance exception"); in localeTest() 115 errln("FAIL: localeTest date/time getDateTimeInstance exception"); in localeTest() 156 Date[] date = new Date[DEPTH]; in tryDate() 165 if (i == 0) date[i] = theDate; in tryDate() 168 date[i] = fFormat.parse(string[i-1].toString()); in tryDate() 178 fFormat.format(date[i], string[i], position); in tryDate() 180 if (dateMatch == 0 && date[i] == date[i-1]) dateMatch = i; in tryDate() 181 else if (dateMatch > 0 && date[i] != date[ in tryDate() [all...] |
/third_party/mesa3d/src/c11/impl/ |
H A D | time.c | 53 ULARGE_INTEGER date; in timespec_get() local 57 date.HighPart = ft.dwHighDateTime; in timespec_get() 58 date.LowPart = ft.dwLowDateTime; in timespec_get() 59 ticks = (LONGLONG)(date.QuadPart - _TIMESPEC_IMPL_UNIX_EPOCH_IN_TICKS); in timespec_get()
|
/third_party/icu/icu4c/source/samples/dtptngsample/ |
H A D | dtptngsample.cpp | 23 u_printf(" Use DateTimePatternGenerator to create customized date/time pattern:\n"); in getBestPatternExample() 49 UDate date = cal->getTime(status); in getBestPatternExample() local 61 // Get the format of the given date in getBestPatternExample() 62 sdf->format(date,dateReturned,status); in getBestPatternExample() 89 UDate date = cal->getTime(status); in addPatternExample() local 97 dateReturned = sdf->format(date, dateReturned, status); in addPatternExample() 130 UDate date = cal->getTime(status); in replaceFieldTypesExample() local 139 dateReturned = sdf->format(date, dateReturned, status); in replaceFieldTypesExample() 147 dateReturned = sdf->format(date, dateReturned, status); in replaceFieldTypesExample()
|
/third_party/skia/third_party/externals/icu/source/samples/dtptngsample/ |
H A D | dtptngsample.cpp | 23 u_printf(" Use DateTimePatternGenerator to create customized date/time pattern:\n"); in getBestPatternExample() 49 UDate date = cal->getTime(status); in getBestPatternExample() local 61 // Get the format of the given date in getBestPatternExample() 62 sdf->format(date,dateReturned,status); in getBestPatternExample() 89 UDate date = cal->getTime(status); in addPatternExample() local 97 dateReturned = sdf->format(date, dateReturned, status); in addPatternExample() 130 UDate date = cal->getTime(status); in replaceFieldTypesExample() local 139 dateReturned = sdf->format(date, dateReturned, status); in replaceFieldTypesExample() 147 dateReturned = sdf->format(date, dateReturned, status); in replaceFieldTypesExample()
|
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/ |
H A D | TimeZoneNameProviderICU.java | 26 long date = System.currentTimeMillis(); in getDisplayName() 32 String lstd = tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); in getDisplayName() 33 String ldst = tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date); in getDisplayName() 34 String sstd = tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); in getDisplayName() 35 String sdst = tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date); in getDisplayName() 53 // tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : in getDisplayName() 54 // tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); in getDisplayName() 58 // tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : in getDisplayName() 59 // tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); in getDisplayName()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/nvfw/ |
H A D | ls.c | 29 char *date; in nvfw_ls_desc_head() local 39 date = kstrndup(hdr->date, sizeof(hdr->date), GFP_KERNEL); in nvfw_ls_desc_head() 40 nvkm_debug(subdev, "\tdate : %s\n", date); in nvfw_ls_desc_head() 41 kfree(date); in nvfw_ls_desc_head()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | CECalendar.java | 119 * Constructs a <code>CECalendar</code> with the given date set 127 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 129 protected CECalendar(int year, int month, int date) { in CECalendar() argument 131 this.set(year, month, date); in CECalendar() 135 * Constructs a <code>CECalendar</code> with the given date set 138 * @param date The date to which the new calendar is set. 140 protected CECalendar(Date date) { in CECalendar() argument 142 this.setTime(date); in CECalendar() 146 * Constructs a <code>CECalendar</code> with the given date 157 CECalendar(int year, int month, int date, int hour, int minute, int second) CECalendar() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/ |
H A D | PersianTest.java | 93 Date date = grego.getTime(); in TestMapping() 94 cal.setTime(date); in TestMapping() 102 buf.append(date + " -> "); in TestMapping() 122 Date date = cal.getTime(); in TestMapping() 125 buf.append(" -> " + date); in TestMapping() 126 if (date.equals(dexp)) { in TestMapping()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
H A D | PersianTest.java | 90 Date date = grego.getTime(); in TestMapping() 91 cal.setTime(date); in TestMapping() 99 buf.append(date + " -> "); in TestMapping() 119 Date date = cal.getTime(); in TestMapping() 122 buf.append(" -> " + date); in TestMapping() 123 if (date.equals(dexp)) { in TestMapping()
|