Home
last modified time | relevance | path

Searched refs:dayOfWeek (Results 1 - 25 of 103) sorted by relevance

12345

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DSimpleHoliday.java90 * <code>dayOfWeek</code>.
92 * @param dayOfWeek The day of the week on which this holiday occurs.
94 * <li>dayOfWeek == 0 - use dayOfMonth only
95 * <li>dayOfWeek &lt; 0 - use last -dayOfWeek before or on dayOfMonth
96 * <li>dayOfWeek &gt; 0 - use first dayOfWeek after or on dayOfMonth
107 public SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name) in SimpleHoliday() argument
110 dayOfWeek > 0 ? dayOfWeek in SimpleHoliday()
117 SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name, int startYear) SimpleHoliday() argument
130 SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name, int startYear, int endYear) SimpleHoliday() argument
[all...]
H A DDateTimeRule.java83 private final int dayOfWeek; field in DateTimeRule
112 this.dayOfWeek = 0; in DateTimeRule()
125 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
132 public DateTimeRule(int month, int weekInMonth, int dayOfWeek, in DateTimeRule() argument
137 this.dayOfWeek = dayOfWeek; in DateTimeRule()
154 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
162 public DateTimeRule(int month, int dayOfMonth, int dayOfWeek, boolean after, in DateTimeRule() argument
167 this.dayOfWeek = dayOfWeek; in DateTimeRule()
[all...]
H A DSimpleDateRule.java34 this.dayOfWeek = 0; in SimpleDateRule()
42 this.dayOfWeek = 0; in SimpleDateRule()
51 * @param dayOfWeek The day of the week on which this rule occurs.
52 * @param after If true, this rule selects the first dayOfWeek
54 * the first dayOfWeek on or before dayOfMonth.
57 public SimpleDateRule(int month, int dayOfMonth, int dayOfWeek, boolean after) in SimpleDateRule() argument
61 this.dayOfWeek = after ? dayOfWeek : -dayOfWeek; in SimpleDateRule()
187 if (dayOfWeek ! in computeInYear()
221 private int dayOfWeek; global() field in SimpleDateRule
[all...]
H A DSimpleTimeZone.java25 * <code>dayOfWeekInMonth = -1</code> along with <code>dayOfWeek = Calendar.SUNDAY</code>
129 * @throws IllegalArgumentException the month, day, dayOfWeek, or time
176 * @throws IllegalArgumentException the month, day, dayOfWeek, or time
222 * @throws IllegalArgumentException the month, day, dayOfWeek, or time
308 * @param dayOfWeek The daylight savings starting day-of-week.
315 * dayOfWeek, or time parameters are out of range
318 public void setStartRule(int month, int dayOfWeekInMonth, int dayOfWeek, in setStartRule() argument
324 getSTZInfo().setStart(month, dayOfWeekInMonth, dayOfWeek, time, -1, false); in setStartRule()
325 setStartRule(month, dayOfWeekInMonth, dayOfWeek, time, WALL_TIME); in setStartRule()
333 * The dayOfWeekInMonth and dayOfWeek parameter
366 setStartRule(int month, int dayOfWeekInMonth, int dayOfWeek, int time, int mode) setStartRule() argument
417 setStartRule(int month, int dayOfMonth, int dayOfWeek, int time, boolean after) setStartRule() argument
447 setEndRule(int month, int dayOfWeekInMonth, int dayOfWeek, int time) setEndRule() argument
494 setEndRule(int month, int dayOfMonth, int dayOfWeek, int time, boolean after) setEndRule() argument
503 setEndRule(int month, int dayOfMonth, int dayOfWeek, int time, int mode, boolean after) setEndRule() argument
526 setEndRule(int month, int dayOfWeekInMonth, int dayOfWeek, int time, int mode) setEndRule() argument
646 getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) getOffset() argument
668 getOffset(int era, int year, int month, int day, int dayOfWeek, int millis, int monthLength) getOffset() argument
686 getOffset(int era, int year, int month, int day, int dayOfWeek, int millis, int monthLength, int prevMonthLength ) getOffset() argument
850 compareToRule(int month, int monthLen, int prevMonthLen, int dayOfMonth, int dayOfWeek, int millis, int millisDelta, int ruleMode, int ruleMonth, int ruleDayOfWeek, int ruleDay, int ruleMillis) compareToRule() argument
[all...]
H A DVTimeZone.java85 public int getOffset(int era, int year, int month, int day, int dayOfWeek, in getOffset() argument
87 return tz.getOffset(era, year, month, day, dayOfWeek, milliseconds); in getOffset()
877 int dayOfWeek = ruleFields[1]; in createRuleByRRULE()
886 if (ruleFields.length != 10 || month == -1 || dayOfWeek == 0) { in createRuleByRRULE()
921 if (month == -1 || dayOfWeek == 0 || dayOfMonth == 0) { in createRuleByRRULE()
967 if (fields[1] != dayOfWeek) { in createRuleByRRULE()
1017 if (dayOfWeek == 0 && nthDayOfWeek == 0 && dayOfMonth == 0) { in createRuleByRRULE()
1031 if (dayOfWeek == 0 && nthDayOfWeek == 0 && dayOfMonth != 0) { in createRuleByRRULE()
1034 } else if (dayOfWeek != 0 && nthDayOfWeek != 0 && dayOfMonth == 0) { in createRuleByRRULE()
1036 adtr = new DateTimeRule(month, nthDayOfWeek, dayOfWeek, timeInDa in createRuleByRRULE()
1489 isEquivalentDateRule(int month, int weekInMonth, int dayOfWeek, DateTimeRule dtrule) isEquivalentDateRule() argument
1561 writeZonePropsByDOW(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, int month, int weekInMonth, int dayOfWeek, long startTime, long untilTime) writeZonePropsByDOW() argument
1582 writeZonePropsByDOW_GEQ_DOM(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, int month, int dayOfMonth, int dayOfWeek, long startTime, long untilTime) writeZonePropsByDOW_GEQ_DOM() argument
1633 writeZonePropsByDOW_GEQ_DOM_sub(Writer writer, int month, int dayOfMonth, int dayOfWeek, int numDays, long untilTime, int fromOffset) writeZonePropsByDOW_GEQ_DOM_sub() argument
1665 writeZonePropsByDOW_LEQ_DOM(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, int month, int dayOfMonth, int dayOfWeek, long startTime, long untilTime) writeZonePropsByDOW_LEQ_DOM() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DSimpleHoliday.java92 * <code>dayOfWeek</code>.
94 * @param dayOfWeek The day of the week on which this holiday occurs.
96 * <li>dayOfWeek == 0 - use dayOfMonth only
97 * <li>dayOfWeek &lt; 0 - use last -dayOfWeek before or on dayOfMonth
98 * <li>dayOfWeek &gt; 0 - use first dayOfWeek after or on dayOfMonth
109 public SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name) in SimpleHoliday() argument
112 dayOfWeek > 0 ? dayOfWeek in SimpleHoliday()
119 SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name, int startYear) SimpleHoliday() argument
132 SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name, int startYear, int endYear) SimpleHoliday() argument
[all...]
H A DDateTimeRule.java70 private final int dayOfWeek; field in DateTimeRule
97 this.dayOfWeek = 0; in DateTimeRule()
110 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
115 public DateTimeRule(int month, int weekInMonth, int dayOfWeek, in DateTimeRule() argument
120 this.dayOfWeek = dayOfWeek; in DateTimeRule()
137 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
143 public DateTimeRule(int month, int dayOfMonth, int dayOfWeek, boolean after, in DateTimeRule() argument
148 this.dayOfWeek = dayOfWeek; in DateTimeRule()
[all...]
H A DSimpleDateRule.java36 this.dayOfWeek = 0; in SimpleDateRule()
44 this.dayOfWeek = 0; in SimpleDateRule()
53 * @param dayOfWeek The day of the week on which this rule occurs.
54 * @param after If true, this rule selects the first dayOfWeek
56 * the first dayOfWeek on or before dayOfMonth.
59 public SimpleDateRule(int month, int dayOfMonth, int dayOfWeek, boolean after) in SimpleDateRule() argument
63 this.dayOfWeek = after ? dayOfWeek : -dayOfWeek; in SimpleDateRule()
185 if (dayOfWeek ! in computeInYear()
222 private int dayOfWeek; global() field in SimpleDateRule
[all...]
H A DSimpleTimeZone.java26 * <code>dayOfWeekInMonth = -1</code> along with <code>dayOfWeek = Calendar.SUNDAY</code>
126 * @throws IllegalArgumentException the month, day, dayOfWeek, or time
172 * @throws IllegalArgumentException the month, day, dayOfWeek, or time
217 * @throws IllegalArgumentException the month, day, dayOfWeek, or time
297 * @param dayOfWeek The daylight savings starting day-of-week.
304 * dayOfWeek, or time parameters are out of range
306 public void setStartRule(int month, int dayOfWeekInMonth, int dayOfWeek, in setStartRule() argument
312 getSTZInfo().setStart(month, dayOfWeekInMonth, dayOfWeek, time, -1, false); in setStartRule()
313 setStartRule(month, dayOfWeekInMonth, dayOfWeek, time, WALL_TIME); in setStartRule()
321 * The dayOfWeekInMonth and dayOfWeek parameter
354 setStartRule(int month, int dayOfWeekInMonth, int dayOfWeek, int time, int mode) setStartRule() argument
403 setStartRule(int month, int dayOfMonth, int dayOfWeek, int time, boolean after) setStartRule() argument
432 setEndRule(int month, int dayOfWeekInMonth, int dayOfWeek, int time) setEndRule() argument
477 setEndRule(int month, int dayOfMonth, int dayOfWeek, int time, boolean after) setEndRule() argument
486 setEndRule(int month, int dayOfMonth, int dayOfWeek, int time, int mode, boolean after) setEndRule() argument
509 setEndRule(int month, int dayOfWeekInMonth, int dayOfWeek, int time, int mode) setEndRule() argument
625 getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) getOffset() argument
647 getOffset(int era, int year, int month, int day, int dayOfWeek, int millis, int monthLength) getOffset() argument
665 getOffset(int era, int year, int month, int day, int dayOfWeek, int millis, int monthLength, int prevMonthLength ) getOffset() argument
828 compareToRule(int month, int monthLen, int prevMonthLen, int dayOfMonth, int dayOfWeek, int millis, int millisDelta, int ruleMode, int ruleMonth, int ruleDayOfWeek, int ruleDay, int ruleMillis) compareToRule() argument
[all...]
H A DVTimeZone.java81 public int getOffset(int era, int year, int month, int day, int dayOfWeek, in getOffset() argument
83 return tz.getOffset(era, year, month, day, dayOfWeek, milliseconds); in getOffset()
848 int dayOfWeek = ruleFields[1]; in createRuleByRRULE()
857 if (ruleFields.length != 10 || month == -1 || dayOfWeek == 0) { in createRuleByRRULE()
892 if (month == -1 || dayOfWeek == 0 || dayOfMonth == 0) { in createRuleByRRULE()
938 if (fields[1] != dayOfWeek) { in createRuleByRRULE()
988 if (dayOfWeek == 0 && nthDayOfWeek == 0 && dayOfMonth == 0) { in createRuleByRRULE()
1002 if (dayOfWeek == 0 && nthDayOfWeek == 0 && dayOfMonth != 0) { in createRuleByRRULE()
1005 } else if (dayOfWeek != 0 && nthDayOfWeek != 0 && dayOfMonth == 0) { in createRuleByRRULE()
1007 adtr = new DateTimeRule(month, nthDayOfWeek, dayOfWeek, timeInDa in createRuleByRRULE()
1460 isEquivalentDateRule(int month, int weekInMonth, int dayOfWeek, DateTimeRule dtrule) isEquivalentDateRule() argument
1532 writeZonePropsByDOW(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, int month, int weekInMonth, int dayOfWeek, long startTime, long untilTime) writeZonePropsByDOW() argument
1553 writeZonePropsByDOW_GEQ_DOM(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, int month, int dayOfMonth, int dayOfWeek, long startTime, long untilTime) writeZonePropsByDOW_GEQ_DOM() argument
1604 writeZonePropsByDOW_GEQ_DOM_sub(Writer writer, int month, int dayOfMonth, int dayOfWeek, int numDays, long untilTime, int fromOffset) writeZonePropsByDOW_GEQ_DOM_sub() argument
1636 writeZonePropsByDOW_LEQ_DOM(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, int month, int dayOfMonth, int dayOfWeek, long startTime, long untilTime) writeZonePropsByDOW_LEQ_DOM() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DGrego.java109 public static int dayOfWeek(long day) { in dayOfWeek() method in Grego
112 int dayOfWeek = (int)remainder[0]; in dayOfWeek()
113 dayOfWeek = (dayOfWeek == 0) ? 7 : dayOfWeek; in dayOfWeek()
114 return dayOfWeek; in dayOfWeek()
147 int dayOfWeek = (int)((day + 2) % 7); // day 0 is Monday(2) in dayToFields()
148 if (dayOfWeek < 1 /* Sunday */) { in dayToFields()
149 dayOfWeek += 7; in dayToFields()
156 fields[3] = dayOfWeek; in dayToFields()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DGrego.java111 public static int dayOfWeek(long day) { in dayOfWeek() method in Grego
114 int dayOfWeek = (int)remainder[0]; in dayOfWeek()
115 dayOfWeek = (dayOfWeek == 0) ? 7 : dayOfWeek; in dayOfWeek()
116 return dayOfWeek; in dayOfWeek()
149 int dayOfWeek = (int)((day + 2) % 7); // day 0 is Monday(2) in dayToFields()
150 if (dayOfWeek < 1 /* Sunday */) { in dayToFields()
151 dayOfWeek += 7; in dayToFields()
158 fields[3] = dayOfWeek; in dayToFields()
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Dsimpletz.h58 * along with <code>dayOfWeek = UCAL_SUNDAY</code> to specify the rule.
278 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
282 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
285 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
288 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
291 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
295 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
299 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
308 * @param dayOfWeek the daylight savings starting day-of-week. Please see
315 void setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek,
894 setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) setStartRule() argument
906 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) setStartRule() argument
912 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) setEndRule() argument
923 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) setEndRule() argument
[all...]
H A Dvtzone.h210 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
217 uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const override;
231 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
239 uint8_t dayOfWeek, int32_t millis,
406 int32_t month, int32_t weekInMonth, int32_t dayOfWeek,
410 int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
413 int32_t dayOfWeek, int32_t numDays,
417 int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dsimpletz.h58 * along with <code>dayOfWeek = UCAL_SUNDAY</code> to specify the rule.
278 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
282 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
285 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
288 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
291 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
295 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
299 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
308 * @param dayOfWeek the daylight savings starting day-of-week. Please see
315 void setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek,
894 setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) setStartRule() argument
906 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) setStartRule() argument
912 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) setEndRule() argument
923 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) setEndRule() argument
[all...]
H A Dvtzone.h210 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
217 uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const override;
231 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
239 uint8_t dayOfWeek, int32_t millis,
406 int32_t month, int32_t weekInMonth, int32_t dayOfWeek,
410 int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
413 int32_t dayOfWeek, int32_t numDays,
417 int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dsimpletz.h58 * along with <code>dayOfWeek = UCAL_SUNDAY</code> to specify the rule.
278 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
282 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
285 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
288 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
291 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
295 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
299 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
308 * @param dayOfWeek the daylight savings starting day-of-week. Please see
315 void setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek,
896 setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) setStartRule() argument
908 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) setStartRule() argument
914 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) setEndRule() argument
925 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) setEndRule() argument
[all...]
H A Dvtzone.h210 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
217 uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const;
231 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
239 uint8_t dayOfWeek, int32_t millis,
409 int32_t month, int32_t weekInMonth, int32_t dayOfWeek,
413 int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
416 int32_t dayOfWeek, int32_t numDays,
420 int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
/third_party/icu/icu4c/source/i18n/
H A Dsimpletz.cpp275 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
278 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
281 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
284 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
287 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
291 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
295 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
303 * @param dayOfWeek the daylight savings starting day-of-week. Please see
310 SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, in setStartRule() argument
315 startDayOfWeek = (int8_t)dayOfWeek; in setStartRule()
334 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode& status) setStartRule() argument
362 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UErrorCode& status) setEndRule() argument
386 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode& status) setEndRule() argument
396 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const getOffset() argument
415 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t , UErrorCode& status) const getOffset() argument
442 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t monthLength, int32_t prevMonthLength, UErrorCode& status) const getOffset() argument
572 compareToRule(int8_t month, int8_t monthLen, int8_t prevMonthLen, int8_t dayOfMonth, int8_t dayOfWeek, int32_t millis, int32_t millisDelta, EMode ruleMode, int8_t ruleMonth, int8_t ruleDayOfWeek, int8_t ruleDay, int32_t ruleMillis) compareToRule() argument
[all...]
H A Ddtrule.cpp32 int32_t dayOfWeek, in DateTimeRule()
35 : fMonth(month), fDayOfMonth(0), fDayOfWeek(dayOfWeek), fWeekInMonth(weekInMonth), fMillisInDay(millisInDay), in DateTimeRule()
41 int32_t dayOfWeek, in DateTimeRule()
46 fMonth(month), fDayOfMonth(dayOfMonth), fDayOfWeek(dayOfWeek), fWeekInMonth(0), fMillisInDay(millisInDay), in DateTimeRule()
30 DateTimeRule(int32_t month, int32_t weekInMonth, int32_t dayOfWeek, int32_t millisInDay, TimeRuleType timeType) DateTimeRule() argument
39 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after, int32_t millisInDay, TimeRuleType timeType) DateTimeRule() argument
/third_party/node/deps/icu-small/source/i18n/
H A Dsimpletz.cpp275 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
278 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
281 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
284 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
287 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
291 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
295 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
303 * @param dayOfWeek the daylight savings starting day-of-week. Please see
310 SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, in setStartRule() argument
315 startDayOfWeek = (int8_t)dayOfWeek; in setStartRule()
334 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode& status) setStartRule() argument
362 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UErrorCode& status) setEndRule() argument
386 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode& status) setEndRule() argument
396 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const getOffset() argument
415 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t , UErrorCode& status) const getOffset() argument
442 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t monthLength, int32_t prevMonthLength, UErrorCode& status) const getOffset() argument
572 compareToRule(int8_t month, int8_t monthLen, int8_t prevMonthLen, int8_t dayOfMonth, int8_t dayOfWeek, int32_t millis, int32_t millisDelta, EMode ruleMode, int8_t ruleMonth, int8_t ruleDayOfWeek, int8_t ruleDay, int32_t ruleMillis) compareToRule() argument
[all...]
H A Ddtrule.cpp32 int32_t dayOfWeek, in DateTimeRule()
35 : fMonth(month), fDayOfMonth(0), fDayOfWeek(dayOfWeek), fWeekInMonth(weekInMonth), fMillisInDay(millisInDay), in DateTimeRule()
41 int32_t dayOfWeek, in DateTimeRule()
46 fMonth(month), fDayOfMonth(dayOfMonth), fDayOfWeek(dayOfWeek), fWeekInMonth(0), fMillisInDay(millisInDay), in DateTimeRule()
30 DateTimeRule(int32_t month, int32_t weekInMonth, int32_t dayOfWeek, int32_t millisInDay, TimeRuleType timeType) DateTimeRule() argument
39 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after, int32_t millisInDay, TimeRuleType timeType) DateTimeRule() argument
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dsimpletz.cpp275 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
278 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
281 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
284 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
287 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
291 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
295 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
303 * @param dayOfWeek the daylight savings starting day-of-week. Please see
310 SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, in setStartRule() argument
315 startDayOfWeek = (int8_t)dayOfWeek; in setStartRule()
334 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode& status) setStartRule() argument
362 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UErrorCode& status) setEndRule() argument
386 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode& status) setEndRule() argument
396 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const getOffset() argument
415 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t , UErrorCode& status) const getOffset() argument
442 getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t monthLength, int32_t prevMonthLength, UErrorCode& status) const getOffset() argument
574 compareToRule(int8_t month, int8_t monthLen, int8_t prevMonthLen, int8_t dayOfMonth, int8_t dayOfWeek, int32_t millis, int32_t millisDelta, EMode ruleMode, int8_t ruleMonth, int8_t ruleDayOfWeek, int8_t ruleDay, int32_t ruleMillis) compareToRule() argument
[all...]
H A Ddtrule.cpp32 int32_t dayOfWeek, in DateTimeRule()
35 : fMonth(month), fDayOfMonth(0), fDayOfWeek(dayOfWeek), fWeekInMonth(weekInMonth), fMillisInDay(millisInDay), in DateTimeRule()
41 int32_t dayOfWeek, in DateTimeRule()
46 fMonth(month), fDayOfMonth(dayOfMonth), fDayOfWeek(dayOfWeek), fWeekInMonth(0), fMillisInDay(millisInDay), in DateTimeRule()
30 DateTimeRule(int32_t month, int32_t weekInMonth, int32_t dayOfWeek, int32_t millisInDay, TimeRuleType timeType) DateTimeRule() argument
39 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after, int32_t millisInDay, TimeRuleType timeType) DateTimeRule() argument
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DTestCase.java89 * @param dayOfWeek The DAY_OF_WEEK field of tested calendar on the given julian day
96 int dayOfWeek, in TestCase()
105 set(Calendar.DAY_OF_WEEK, dayOfWeek); in TestCase()
123 * @param dayOfWeek The DAY_OF_WEEK field of tested calendar on the given gregorian date
130 int dayOfWeek, in TestCase()
142 set(Calendar.DAY_OF_WEEK, dayOfWeek); in TestCase()
94 TestCase(double julian, int era, int year, int month, int day, int dayOfWeek, int hour, int min, int sec) TestCase() argument
128 TestCase(int gregYear, int gregMonth, int gregDay, int era, int year, int month, int day, int dayOfWeek, int hour, int min, int sec) TestCase() argument

Completed in 20 milliseconds

12345