Home
last modified time | relevance | path

Searched refs:startDate (Results 1 – 25 of 36) sorted by relevance

12

/third_party/parse5/bench/memory/
Dsax-parser.js20 const startDate = new Date();
29 printResults(parsedDataSize, startDate, endDate, heapDiff, maxMemUsage);
49 function getDuration(startDate, endDate) { argument
56 return format((endDate - startDate) / 1000, { scale });
59 function printResults(parsedDataSize, startDate, endDate, heapDiff, maxMemUsage) { argument
61 console.log('Duration:', getDuration(startDate, endDate));
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dislamcal.cpp609 int32_t startDate; in handleComputeFields() local
620 startDate = monthStart(year, month); in handleComputeFields()
625 startDate = (int32_t)uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH); in handleComputeFields()
632 if ( days - startDate >= 25 && age > 0) { in handleComputeFields()
639 while ((startDate = trueMonthStart(months)) > days) { in handleComputeFields()
653 startDate = monthStart(year, month); in handleComputeFields()
Derarules.cpp34 static UBool isSet(int startDate) { in isSet() argument
35 return startDate != 0; in isSet()
/third_party/skia/third_party/externals/icu/source/i18n/
Dislamcal.cpp608 int32_t startDate; in handleComputeFields() local
619 startDate = monthStart(year, month); in handleComputeFields()
624 startDate = (int32_t)uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH); in handleComputeFields()
631 if ( days - startDate >= 25 && age > 0) { in handleComputeFields()
638 while ((startDate = trueMonthStart(months)) > days) { in handleComputeFields()
653 startDate = monthStart(year, month); in handleComputeFields()
Derarules.cpp37 static UBool isSet(int startDate) { in isSet() argument
38 return startDate != 0; in isSet()
/third_party/node/deps/icu-small/source/i18n/
Dislamcal.cpp608 int32_t startDate; in handleComputeFields() local
619 startDate = monthStart(year, month); in handleComputeFields()
624 startDate = (int32_t)uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH); in handleComputeFields()
631 if ( days - startDate >= 25 && age > 0) { in handleComputeFields()
638 while ((startDate = trueMonthStart(months)) > days) { in handleComputeFields()
653 startDate = monthStart(year, month); in handleComputeFields()
Derarules.cpp37 static UBool isSet(int startDate) { in isSet() argument
38 return startDate != 0; in isSet()
/third_party/icu/icu4c/source/i18n/
Dislamcal.cpp608 int32_t startDate; in handleComputeFields() local
619 startDate = monthStart(year, month); in handleComputeFields()
624 startDate = (int32_t)uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH); in handleComputeFields()
631 if ( days - startDate >= 25 && age > 0) { in handleComputeFields()
638 while ((startDate = trueMonthStart(months)) > days) { in handleComputeFields()
653 startDate = monthStart(year, month); in handleComputeFields()
Derarules.cpp37 static UBool isSet(int startDate) { in isSet() argument
38 return startDate != 0; in isSet()
/third_party/icu/icu4c/source/test/intltest/
Dcallimts.h79 …void doLimitsTest(Calendar& cal, const int32_t* fieldsToTest, UDate startDate, int32_t testDuratio…
84 void doLimitsTest(Calendar& cal, UDate startDate, int32_t endTime);
Dcallimts.cpp302 CalendarLimitTest::doLimitsTest(Calendar& cal, UDate startDate, int32_t endTime) { in doLimitsTest() argument
304 doLimitsTest(cal, NULL /*default fields*/, startDate, testTime); in doLimitsTest()
310 UDate startDate, in doLimitsTest() argument
344 greg.setTime(startDate, status); in doLimitsTest()
348 logln((UnicodeString)"Start: " + startDate); in doLimitsTest()
Dsdtfmtts.cpp196 UDate startDate = pat.get2DigitYearStart(status); in testAPI() local
202 pat_fr.set2DigitYearStart(startDate, status); in testAPI()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DCalendarTestFmwk.java226 Date startDate, int testDuration) { in doLimitsTest() argument
228 greg.setTime(startDate); in doLimitsTest()
229 logln("Start: " + startDate); in doLimitsTest()
345 protected void doLimitsTest(Calendar cal, int[] fieldsToTest, Date startDate) { in doLimitsTest() argument
347 doLimitsTest(cal, fieldsToTest, startDate, testTime); in doLimitsTest()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
DCalendarTestFmwk.java229 Date startDate, int testDuration) { in doLimitsTest() argument
231 greg.setTime(startDate); in doLimitsTest()
232 logln("Start: " + startDate); in doLimitsTest()
348 protected void doLimitsTest(Calendar cal, int[] fieldsToTest, Date startDate) { in doLimitsTest() argument
350 doLimitsTest(cal, fieldsToTest, startDate, testTime); in doLimitsTest()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DEraRules.java237 private static boolean isSet(int startDate) { in isSet() argument
238 return startDate != 0; in isSet()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DEraRules.java239 private static boolean isSet(int startDate) { in isSet() argument
240 return startDate != 0; in isSet()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/
DTimeZoneAliasTest.java173 static private final long startDate = getDate(1905,0,1).getTime(); field in TimeZoneAliasTest.Zone
277 … for (long currentDate = endDate; currentDate >= startDate; currentDate -= GROSS_PERIOD) { in Zone()
302 inflectionPoints.add(new Long(startDate)); // just to cap it off for comparisons. in Zone()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneAliasTest.java170 static private final long startDate = getDate(1905,0,1).getTime(); field in TimeZoneAliasTest.Zone
274 … for (long currentDate = endDate; currentDate >= startDate; currentDate -= GROSS_PERIOD) { in Zone()
299 inflectionPoints.add(new Long(startDate)); // just to cap it off for comparisons. in Zone()
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_intl.js57 formatRange: function (startDate, endDate) { argument
/third_party/typescript/src/testRunner/parallel/
Dhost.ts241 const startDate = new Date();
465 get() { return startDate; },
524 duration = +endDate - +startDate;
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateIntervalFormatTest.java963 final long startDate = 1285599629000L; // 2010-Sep-27 0800 in America/Los_Angeles in TestContext() local
1007 DateInterval interval = new DateInterval(startDate, startDate + item.deltaDate); in TestContext()
1756 final long startDate = 1232364615000L; in TestTicket11583() local
1776 DateInterval date_interval = new DateInterval(startDate, endDate); in TestTicket11583()
1780 String formattedStart = dateFormat.format(startDate); in TestTicket11583()
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DSimpleDateFormatICU.java151 public void set2DigitYearStart(Date startDate) { in set2DigitYearStart() argument
152 fIcuSdf.set2DigitYearStart(startDate); in set2DigitYearStart()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DDateIntervalFormatTest.java1601 final long startDate = 1232364615000L; in TestTicket11583() local
1621 DateInterval date_interval = new DateInterval(startDate, endDate); in TestTicket11583()
1625 String formattedStart = dateFormat.format(startDate); in TestTicket11583()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/unicode/
Dsmpdtfmt.h1474 void parseAmbiguousDatesAsAfter(UDate startDate, UErrorCode& status);
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dsmpdtfmt.h1479 void parseAmbiguousDatesAsAfter(UDate startDate, UErrorCode& status);

12