Home
last modified time | relevance | path

Searched refs:getMinimalDaysInFirstWeek (Results 1 – 25 of 45) sorted by relevance

12

/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DCalendarICU.java178 public int getMinimalDaysInFirstWeek() { in getMinimalDaysInFirstWeek() method in CalendarICU
179 return fIcuCal.getMinimalDaysInFirstWeek(); in getMinimalDaysInFirstWeek()
DSimpleDateFormatICU.java281 icuCal.setMinimalDaysInFirstWeek(newCalendar.getMinimalDaysInFirstWeek()); in setCalendar()
/third_party/icu/icu4c/source/i18n/
Dcalendar.cpp1665 if ((7 - relDowJan1) >= getMinimalDaysInFirstWeek()) { in computeWeekFields()
1693 if (((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) && in computeWeekFields()
1730 if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo; in weekNumber()
1931 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
1989 if ((7 - fdy) < getMinimalDaysInFirstWeek()) in roll()
2535 Calendar::getMinimalDaysInFirstWeek() const in getMinimalDaysInFirstWeek() function in Calendar
2725 limit = getMinimalDaysInFirstWeek() == 1 ? 1 : 0; in getLimit()
2729 int32_t minDaysInFirst = getMinimalDaysInFirstWeek(); in getLimit()
3359 … fprintf(stderr, " next: %d DFW, min=%d \n", (7-nextFirst), getMinimalDaysInFirstWeek() ); in handleComputeJulianDay()
3364 (7-nextFirst) >= getMinimalDaysInFirstWeek()) // or enough days in the week in handleComputeJulianDay()
[all …]
Dgregocal.cpp897 if ((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) lastDoy -= 7; in roll()
994 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dcalendar.cpp1649 if ((7 - relDowJan1) >= getMinimalDaysInFirstWeek()) { in computeWeekFields()
1677 if (((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) && in computeWeekFields()
1714 if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo; in weekNumber()
1915 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
1973 if ((7 - fdy) < getMinimalDaysInFirstWeek()) in roll()
2519 Calendar::getMinimalDaysInFirstWeek() const in getMinimalDaysInFirstWeek() function in Calendar
2709 limit = getMinimalDaysInFirstWeek() == 1 ? 1 : 0; in getLimit()
2713 int32_t minDaysInFirst = getMinimalDaysInFirstWeek(); in getLimit()
3343 … fprintf(stderr, " next: %d DFW, min=%d \n", (7-nextFirst), getMinimalDaysInFirstWeek() ); in handleComputeJulianDay()
3348 (7-nextFirst) >= getMinimalDaysInFirstWeek()) // or enough days in the week in handleComputeJulianDay()
[all …]
Dgregocal.cpp897 if ((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) lastDoy -= 7; in roll()
994 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
Ducal.cpp328 return ((Calendar*)cal)->getMinimalDaysInFirstWeek(); in ucal_getAttribute()
/third_party/skia/third_party/externals/icu/source/i18n/
Dcalendar.cpp1665 if ((7 - relDowJan1) >= getMinimalDaysInFirstWeek()) { in computeWeekFields()
1693 if (((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) && in computeWeekFields()
1730 if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo; in weekNumber()
1931 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
1989 if ((7 - fdy) < getMinimalDaysInFirstWeek()) in roll()
2535 Calendar::getMinimalDaysInFirstWeek() const in getMinimalDaysInFirstWeek() function in Calendar
2725 limit = getMinimalDaysInFirstWeek() == 1 ? 1 : 0; in getLimit()
2729 int32_t minDaysInFirst = getMinimalDaysInFirstWeek(); in getLimit()
3359 … fprintf(stderr, " next: %d DFW, min=%d \n", (7-nextFirst), getMinimalDaysInFirstWeek() ); in handleComputeJulianDay()
3364 (7-nextFirst) >= getMinimalDaysInFirstWeek()) // or enough days in the week in handleComputeJulianDay()
[all …]
Dgregocal.cpp897 if ((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) lastDoy -= 7; in roll()
994 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
/third_party/node/deps/icu-small/source/i18n/
Dcalendar.cpp1665 if ((7 - relDowJan1) >= getMinimalDaysInFirstWeek()) { in computeWeekFields()
1693 if (((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) && in computeWeekFields()
1730 if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo; in weekNumber()
1931 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
1989 if ((7 - fdy) < getMinimalDaysInFirstWeek()) in roll()
2535 Calendar::getMinimalDaysInFirstWeek() const in getMinimalDaysInFirstWeek() function in Calendar
2725 limit = getMinimalDaysInFirstWeek() == 1 ? 1 : 0; in getLimit()
2729 int32_t minDaysInFirst = getMinimalDaysInFirstWeek(); in getLimit()
3359 … fprintf(stderr, " next: %d DFW, min=%d \n", (7-nextFirst), getMinimalDaysInFirstWeek() ); in handleComputeJulianDay()
3364 (7-nextFirst) >= getMinimalDaysInFirstWeek()) // or enough days in the week in handleComputeJulianDay()
[all …]
Dgregocal.cpp897 if ((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) lastDoy -= 7; in roll()
994 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DCalendar.java2373 getMinimalDaysInFirstWeek() == other.getMinimalDaysInFirstWeek() && in isEquivalentTo()
2975 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
3033 if ((7 - fdy) < getMinimalDaysInFirstWeek()) in roll()
3911 if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo; in weekNumber()
4318 public int getMinimalDaysInFirstWeek() in getMinimalDaysInFirstWeek() method in Calendar
4404 limit = getMinimalDaysInFirstWeek() == 1 ? 1 : 0; in getLimit()
4408 int minDaysInFirst = getMinimalDaysInFirstWeek(); in getLimit()
5148 if ((7 - relDowJan1) >= getMinimalDaysInFirstWeek()) { in computeWeekFields()
5176 if (((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) && in computeWeekFields()
6068 if ((7 - first) < getMinimalDaysInFirstWeek()) { in handleComputeJulianDay()
DGregorianCalendar.java597 if ((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) lastDoy -= 7; in roll()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DCalendar.java2283 getMinimalDaysInFirstWeek() == other.getMinimalDaysInFirstWeek() && in isEquivalentTo()
2877 if ((7 - fdm) < getMinimalDaysInFirstWeek()) in roll()
2935 if ((7 - fdy) < getMinimalDaysInFirstWeek()) in roll()
3771 if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo; in weekNumber()
4160 public int getMinimalDaysInFirstWeek() in getMinimalDaysInFirstWeek() method in Calendar
4244 limit = getMinimalDaysInFirstWeek() == 1 ? 1 : 0; in getLimit()
4248 int minDaysInFirst = getMinimalDaysInFirstWeek(); in getLimit()
4948 if ((7 - relDowJan1) >= getMinimalDaysInFirstWeek()) { in computeWeekFields()
4976 if (((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) && in computeWeekFields()
5851 if ((7 - first) < getMinimalDaysInFirstWeek()) { in handleComputeJulianDay()
DGregorianCalendar.java577 if ((6 - lastRelDow) >= getMinimalDaysInFirstWeek()) lastDoy -= 7; in roll()
/third_party/icu/tools/multi/proj/provider/
Dcaldiff.cpp91 …sprintf(outchars, " cal: mindays=%d firstday=%d ", (int)cal->getMinimalDaysInFirstWeek(), (int)cal… in main()
/third_party/icu/docs/userguide/datetime/calendar/
Dindex.md191 using calls such as `getMinimalDaysInFirstWeek()`, `getFirstDayOfWeek()`, and
315 …that contains at least `getMinimalDaysInFirstWeek()` days from that year. It depends on the values…
317 and `getMinimalDaysInFirstWeek()` is `4` (these are the values reflecting ISO 8601
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_i18n.js348 this.getMinimalDaysInFirstWeek = function() { method
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DCalendarTestFmwk.java370 int minDaysInFirstWeek = cal.getMinimalDaysInFirstWeek(); in doTheoreticalLimitsTest()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
DCalendarTestFmwk.java373 int minDaysInFirstWeek = cal.getMinimalDaysInFirstWeek(); in doTheoreticalLimitsTest()
/third_party/icu/icu4c/source/test/intltest/
Dcallimts.cpp247 int32_t minDaysInFirstWeek = cal.getMinimalDaysInFirstWeek(); in doTheoreticalLimitsTest()
/third_party/node/deps/icu-small/source/i18n/unicode/
Dcalendar.h1022 uint8_t getMinimalDaysInFirstWeek(void) const;
/third_party/icu/icu4c/source/i18n/unicode/
Dcalendar.h1022 uint8_t getMinimalDaysInFirstWeek(void) const;
/third_party/flutter/skia/third_party/externals/icu/source/i18n/unicode/
Dcalendar.h1011 uint8_t getMinimalDaysInFirstWeek(void) const;
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dcalendar.h1022 uint8_t getMinimalDaysInFirstWeek(void) const;

12