Home
last modified time | relevance | path

Searched refs:date (Results 226 - 250 of 839) sorted by relevance

12345678910>>...34

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTimeZoneAdapter.java121 public boolean inDaylightTime(Date date) { in inDaylightTime() argument
122 return zone.inDaylightTime(date); in inDaylightTime()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DHoliday.java62 * Return the first occurrence of this holiday on or after the given date
64 * @param start Only holidays on or after this date are returned.
66 * @return The date on which this holiday occurs, or null if it
67 * does not occur on or after the start date.
79 * the given start date and before the given end date.
81 * @param start Only occurrences on or after this date are returned.
82 * @param end Only occurrences before this date are returned.
84 * @return The date on which this event occurs, or null if it
96 * Checks whether this holiday falls on the given date
105 isOn(Date date) isOn() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DHoliday.java64 * Return the first occurrence of this holiday on or after the given date
66 * @param start Only holidays on or after this date are returned.
68 * @return The date on which this holiday occurs, or null if it
69 * does not occur on or after the start date.
81 * the given start date and before the given end date.
83 * @param start Only occurrences on or after this date are returned.
84 * @param end Only occurrences before this date are returned.
86 * @return The date on which this event occurs, or null if it
98 * Checks whether this holiday falls on the given date
107 isOn(Date date) isOn() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DTimeZoneAdapter.java122 public boolean inDaylightTime(Date date) { in inDaylightTime() argument
123 return zone.inDaylightTime(date); in inDaylightTime()
/third_party/icu/icu4c/source/i18n/
H A Dcecal.cpp112 CECalendar::ceToJD(int32_t year, int32_t month, int32_t date, int32_t jdEpochOffset) in ceToJD() argument
128 + date - 1 // number of days for present month (1 based) in ceToJD()
/third_party/ltp/testcases/kernel/fs/fs_inod/
H A Dfs_inod176 # Added date stamps to track execution time and duration
238 date
254 date
/third_party/node/deps/icu-small/source/i18n/
H A Dcecal.cpp101 CECalendar::ceToJD(int32_t year, int32_t month, int32_t date, int32_t jdEpochOffset) in ceToJD() argument
117 + date - 1 // number of days for present month (1 based) in ceToJD()
/third_party/ltp/testcases/network/stress/ftp/
H A Dftp-upload-stress02-rmt.sh52 start_epoc=$(date +%s)
55 current_epoc=$(date +%s)
/third_party/rust/crates/humantime/src/
H A Dwrapper.rs7 use crate::date::{self, parse_rfc3339_weak, format_rfc3339};
97 type Err = date::Error;
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dgenspec.py11 The current branch must be fully committed and up to date when the
16 from datetime import date, timedelta namespace
25 """Return a date for the current, or upcoming if not already, Friday,
27 today = date.today()
158 - `tagdate` = date (used to be used to tag the tree with)"""
159 # Tag date in YYYYMMDD format
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcecal.cpp112 CECalendar::ceToJD(int32_t year, int32_t month, int32_t date, int32_t jdEpochOffset) in ceToJD() argument
128 + date - 1 // number of days for present month (1 based) in ceToJD()
/third_party/typescript/tests/baselines/reference/tsbuild/declarationEmit/
H A Dwhen-declaration-file-used-inferred-type-from-referenced-project.js49 [12:00:17 AM] Project 'src/packages/pkg1/tsconfig.json' is out of date because output file 'src/packages/pkg1/lib/tsconfig.tsbuildinfo' does not exist
53 [12:00:26 AM] Project 'src/packages/pkg2/tsconfig.json' is out of date because output file 'src/packages/pkg2/lib/tsconfig.tsbuildinfo' does not exist
/foundation/arkui/ace_engine/frameworks/core/components/calendar/
H A Dcalendar_data_adapter.h488 std::vector<int> date; in StringToCalendarDay() local
489 StringSplitter(str, '-', date); in StringToCalendarDay()
490 if (date.size() == 3) { in StringToCalendarDay()
491 day.month.year = date[0]; in StringToCalendarDay()
492 day.month.month = date[1] - 1; in StringToCalendarDay()
493 day.day = date[2]; in StringToCalendarDay()
/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Davmetadata_collector.cpp328 std::string date; in FormatDateTime() local
330 globalInfo->GetData(Tag::MEDIA_DATE, date); in FormatDateTime()
333 if (!date.empty()) { in FormatDateTime()
334 formattedDateTime = TimeFormatUtils::FormatDateTimeByTimeZone(date); in FormatDateTime()
340 formattedDateTime.compare(date) != 0 ? formattedDateTime : TimeFormatUtils::FormatDataTimeByString(date)); in FormatDateTime()
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/test/
H A Dstore_factory_test.cpp110 std::vector<uint8_t> date; in GetDate() local
111 date.assign(content.begin() + DATE_FILE_OFFSET, content.begin() + DATE_FILE_LENGTH + DATE_FILE_OFFSET); in GetDate()
112 timePoint = std::chrono::system_clock::from_time_t(*reinterpret_cast<time_t *>(const_cast<uint8_t *>(&date[0]))); in GetDate()
130 std::vector<char> date(reinterpret_cast<uint8_t *>(&time), reinterpret_cast<uint8_t *>(&time) + sizeof(time)); in ChangeKeyDate()
131 std::copy(date.begin(), date.end(), ++content.begin()); in ChangeKeyDate()
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_store_rekey_test.cpp142 std::vector<uint8_t> date; in GetKeyFileDate() local
143 date.assign(iter, iter + dateFileLength); in GetKeyFileDate()
144 timePoint = std::chrono::system_clock::from_time_t(*reinterpret_cast<time_t *>(const_cast<uint8_t *>(&date[0]))); in GetKeyFileDate()
162 std::vector<char> date(reinterpret_cast<uint8_t *>(&time), reinterpret_cast<uint8_t *>(&time) + sizeof(time)); in ChangeKeyFileDate()
163 std::copy(date.begin(), date.end(), ++content.begin()); in ChangeKeyFileDate()
339 * @tc.desc: try to open store and modify create date to a future time.
/third_party/icu/icu4c/source/i18n/unicode/
H A Dcalendar.h79 * time fields have been initialized with the current date and time:
84 * needed to implement the date-time formatting for a particular language
118 * many US locations observe daylight saving time. On the date switching to daylight
121 * the date. When the input wall time fall into this missing time slot, the ICU
126 * On the date switching back to standard time, wall clock time is moved back one
129 * by default. For example, 1:30 AM on the date is resolved as 1:30 AM standard time.
150 * The date or time format strings are not part of the definition of a
156 * month up in the date December 12, **1996** results in
159 * `Calendar` also provides a date arithmetic function for
161 * For example, subtracting 5 days from the date `Septembe
443 setTime(UDate date, UErrorCode& status) setTime() argument
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DDangiTest.java84 Date date = grego.getTime(); in TestMapping()
85 cal.setTime(date); in TestMapping()
95 buf.append(date + " -> "); in TestMapping()
117 Date date = cal.getTime(); in TestMapping()
120 buf.append(" -> " + date); in TestMapping()
121 if (date.equals(dexp)) { in TestMapping()
158 // The number of days and the start date can be adjusted in TestLimits()
436 assertEquals("chinese and gregorian date should match", target, result); in TestInitWithCurrentTime()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DDangiTest.java87 Date date = grego.getTime(); in TestMapping()
88 cal.setTime(date); in TestMapping()
98 buf.append(date + " -> "); in TestMapping()
120 Date date = cal.getTime(); in TestMapping()
123 buf.append(" -> " + date); in TestMapping()
124 if (date.equals(dexp)) { in TestMapping()
161 // The number of days and the start date can be adjusted in TestLimits()
439 assertEquals("chinese and gregorian date should match", target, result); in TestInitWithCurrentTime()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dcalendar.h79 * time fields have been initialized with the current date and time:
84 * needed to implement the date-time formatting for a particular language
118 * many US locations observe daylight saving time. On the date switching to daylight
121 * the date. When the input wall time fall into this missing time slot, the ICU
126 * On the date switching back to standard time, wall clock time is moved back one
129 * by default. For example, 1:30 AM on the date is resolved as 1:30 AM standard time.
150 * The date or time format strings are not part of the definition of a
156 * month up in the date December 12, **1996** results in
159 * `Calendar` also provides a date arithmetic function for
161 * For example, subtracting 5 days from the date `Septembe
443 setTime(UDate date, UErrorCode& status) setTime() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dcalendar.h79 * time fields have been initialized with the current date and time:
84 * needed to implement the date-time formatting for a particular language
118 * many US locations observe daylight saving time. On the date switching to daylight
121 * the date. When the input wall time fall into this missing time slot, the ICU
126 * On the date switching back to standard time, wall clock time is moved back one
129 * by default. For example, 1:30 AM on the date is resolved as 1:30 AM standard time.
150 * The date or time format strings are not part of the definition of a
156 * month up in the date December 12, **1996** results in
159 * `Calendar` also provides a date arithmetic function for
161 * For example, subtracting 5 days from the date `Septembe
443 setTime(UDate date, UErrorCode& status) setTime() argument
[all...]
/third_party/typescript/tests/baselines/reference/tsbuildWatch/noEmitOnError/
H A Ddoes-not-emit-any-files-on-error-with-incremental.js50 [12:00:33 AM] Project 'tsconfig.json' is out of date because output file 'dev-build/tsconfig.tsbuildinfo' does not exist
157 [12:00:48 AM] Project 'tsconfig.json' is out of date because buildinfo file 'dev-build/tsconfig.tsbuildinfo' indicates that some of the changes were not emitted
216 [12:00:55 AM] Project 'tsconfig.json' is out of date because buildinfo file 'dev-build/tsconfig.tsbuildinfo' indicates that some of the changes were not emitted
352 [12:01:23 AM] Project 'tsconfig.json' is out of date because output 'dev-build/tsconfig.tsbuildinfo' is older than input 'src/main.ts'
483 [12:01:38 AM] Project 'tsconfig.json' is out of date because buildinfo file 'dev-build/tsconfig.tsbuildinfo' indicates that some of the changes were not emitted
540 [12:01:45 AM] Project 'tsconfig.json' is out of date because buildinfo file 'dev-build/tsconfig.tsbuildinfo' indicates that some of the changes were not emitted
654 [12:02:02 AM] Project 'tsconfig.json' is up to date but needs to update timestamps of output files that are older than input files
H A Ddoes-not-emit-any-files-on-error.js50 [12:00:33 AM] Project 'tsconfig.json' is out of date because output file 'dev-build/shared/types/db.js' does not exist
104 [12:00:40 AM] Project 'tsconfig.json' is out of date because output file 'dev-build/shared/types/db.js' does not exist
163 [12:00:47 AM] Project 'tsconfig.json' is out of date because output file 'dev-build/shared/types/db.js' does not exist
242 [12:01:11 AM] Project 'tsconfig.json' is out of date because output 'dev-build/shared/types/db.js' is older than input 'src/main.ts'
298 [12:01:19 AM] Project 'tsconfig.json' is out of date because output 'dev-build/shared/types/db.js' is older than input 'src/main.ts'
355 [12:01:26 AM] Project 'tsconfig.json' is out of date because output 'dev-build/shared/types/db.js' is older than input 'src/main.ts'
416 [12:01:39 AM] Project 'tsconfig.json' is out of date because output 'dev-build/shared/types/db.js' is older than input 'src/main.ts'
/third_party/python/Lib/zoneinfo/
H A D_zoneinfo.py699 date, *time = dststr.split("/")
700 if date[0] == "M":
702 m = re.match(r"M(\d{1,2})\.(\d).(\d)$", date)
704 raise ValueError(f"Invalid dst start/end date: {dststr}")
708 if date[0] == "J":
710 date = date[1:]
714 doy = int(date)
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DTestMessageFormat.java167 "'{1,date,full}', {1,date,full},", in TestPattern()
168 "'{3,date,full}', {3,date,full},", in TestPattern()
181 "'{'1,date,full}, {1,date,full},", in TestPattern()
182 "'{'3,date,full}, {3,date,full},", in TestPattern()
193 "{1,date,full}, Wednesday, December 31, 1969,", in TestPattern()
194 "{3,date,ful in TestPattern()
2128 doTheRealDateTimeSkeletonTesting(Date date, String messagePattern, ULocale locale, String expected) doTheRealDateTimeSkeletonTesting() argument
[all...]

Completed in 14 milliseconds

12345678910>>...34