HomeSort by relevance Sort by last modified time
    Searched refs:dayOfWeek (Results 1 - 25 of 75) sorted by null

1 2 3

  /art/test/048-reflect-v8/src/
SingleUser.java 18 @Calendar(dayOfWeek="single", hour=23)
User.java 23 * @Calendar(dayOfWeek="Fri", hour=23)
27 @Calendar(dayOfWeek="Fri", hour=23)
AnnotationTestFixture.java 19 @Calendar(dayOfWeek="single", hour=23)
25 @Calendar(dayOfWeek="Fri", hour=23)
Calendar.java 29 String dayOfWeek() default "unspecified_week";
  /external/icu/android_icu4j/src/main/java/android/icu/util/
SimpleHoliday.java 92 * <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)
112 dayOfWeek > 0 ? dayOfWeek : - dayOfWeek
    [all...]
DateTimeRule.java 70 private final int dayOfWeek;
97 this.dayOfWeek = 0;
110 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
115 public DateTimeRule(int month, int weekInMonth, int dayOfWeek,
120 this.dayOfWeek = dayOfWeek;
137 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
143 public DateTimeRule(int month, int dayOfMonth, int dayOfWeek, boolean after,
148 this.dayOfWeek = dayOfWeek;
    [all...]
SimpleDateRule.java 36 this.dayOfWeek = 0;
44 this.dayOfWeek = 0;
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)
63 this.dayOfWeek = after ? dayOfWeek : -dayOfWeek;
185 if (dayOfWeek != 0)
    [all...]
SimpleTimeZone.java 26 * <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,
312 getSTZInfo().setStart(month, dayOfWeekInMonth, dayOfWeek, time, -1, false);
313 setStartRule(month, dayOfWeekInMonth, dayOfWeek, time, WALL_TIME);
321 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculat
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
SimpleHoliday.java 94 * <code>dayOfWeek</code>.
96 * @param dayOfWeek The day of the week on which this holiday occurs.
98 * <li>dayOfWeek == 0 - use dayOfMonth only
99 * <li>dayOfWeek &lt; 0 - use last -dayOfWeek before or on dayOfMonth
100 * <li>dayOfWeek &gt; 0 - use first dayOfWeek after or on dayOfMonth
112 public SimpleHoliday(int month, int dayOfMonth, int dayOfWeek, String name)
115 dayOfWeek > 0 ? dayOfWeek : - dayOfWeek
    [all...]
DateTimeRule.java 83 private final int dayOfWeek;
112 this.dayOfWeek = 0;
125 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
132 public DateTimeRule(int month, int weekInMonth, int dayOfWeek,
137 this.dayOfWeek = dayOfWeek;
154 * @param dayOfWeek The day of week, for example, <code>Calendar.SUNDAY</code>.
162 public DateTimeRule(int month, int dayOfMonth, int dayOfWeek, boolean after,
167 this.dayOfWeek = dayOfWeek;
    [all...]
SimpleDateRule.java 36 this.dayOfWeek = 0;
44 this.dayOfWeek = 0;
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.
60 public SimpleDateRule(int month, int dayOfMonth, int dayOfWeek, boolean after)
64 this.dayOfWeek = after ? dayOfWeek : -dayOfWeek;
190 if (dayOfWeek != 0)
    [all...]
SimpleTimeZone.java 25 * <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,
324 getSTZInfo().setStart(month, dayOfWeekInMonth, dayOfWeek, time, -1, false);
325 setStartRule(month, dayOfWeekInMonth, dayOfWeek, time, WALL_TIME);
333 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculat
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Grego.java 111 public static int dayOfWeek(long day) {
114 int dayOfWeek = (int)remainder[0];
115 dayOfWeek = (dayOfWeek == 0) ? 7 : dayOfWeek;
116 return dayOfWeek;
149 int dayOfWeek = (int)((day + 2) % 7); // day 0 is Monday(2)
150 if (dayOfWeek < 1 /* Sunday */) {
151 dayOfWeek += 7;
158 fields[3] = dayOfWeek;
    [all...]
TimeZoneAdapter.java 91 public int getOffset(int era, int year, int month, int day, int dayOfWeek,
93 return zone.getOffset(era, year, month, day, dayOfWeek, millis);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Grego.java 109 public static int dayOfWeek(long day) {
112 int dayOfWeek = (int)remainder[0];
113 dayOfWeek = (dayOfWeek == 0) ? 7 : dayOfWeek;
114 return dayOfWeek;
147 int dayOfWeek = (int)((day + 2) % 7); // day 0 is Monday(2)
148 if (dayOfWeek < 1 /* Sunday */) {
149 dayOfWeek += 7;
156 fields[3] = dayOfWeek;
    [all...]
TimeZoneAdapter.java 88 public int getOffset(int era, int year, int month, int day, int dayOfWeek,
90 return zone.getOffset(era, year, month, day, dayOfWeek, millis);
  /external/icu/icu4c/source/i18n/unicode/
simpletz.h 56 * along with <code>dayOfWeek = UCAL_SUNDAY</code> to specify the rule.
276 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
280 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
283 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
286 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
289 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
293 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
297 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
306 * @param dayOfWeek the daylight savings starting day-of-week. Please see
313 void setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek,
    [all...]
dtrule.h 83 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>.
89 DateTimeRule(int32_t month, int32_t weekInMonth, int32_t dayOfWeek,
100 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>.
107 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
ChineseTestCase.java 32 * @param dayOfWeek the DAY_OF_WEEK field of tested calendar on given
37 boolean isLeapMonth, int dayOfMonth, int dayOfWeek) {
46 set(Calendar.DAY_OF_WEEK, dayOfWeek);
TestCase.java 89 * @param dayOfWeek The DAY_OF_WEEK field of tested calendar on the given julian day
96 int dayOfWeek,
105 set(Calendar.DAY_OF_WEEK, dayOfWeek);
123 * @param dayOfWeek The DAY_OF_WEEK field of tested calendar on the given gregorian date
130 int dayOfWeek,
142 set(Calendar.DAY_OF_WEEK, dayOfWeek);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
ChineseTestCase.java 29 * @param dayOfWeek the DAY_OF_WEEK field of tested calendar on given
34 boolean isLeapMonth, int dayOfMonth, int dayOfWeek) {
43 set(Calendar.DAY_OF_WEEK, dayOfWeek);
TestCase.java 86 * @param dayOfWeek The DAY_OF_WEEK field of tested calendar on the given julian day
93 int dayOfWeek,
102 set(Calendar.DAY_OF_WEEK, dayOfWeek);
120 * @param dayOfWeek The DAY_OF_WEEK field of tested calendar on the given gregorian date
127 int dayOfWeek,
139 set(Calendar.DAY_OF_WEEK, dayOfWeek);
  /external/icu/icu4c/source/i18n/
dtrule.cpp 32 int32_t dayOfWeek,
35 : fMonth(month), fDayOfMonth(0), fDayOfWeek(dayOfWeek), fWeekInMonth(weekInMonth), fMillisInDay(millisInDay),
41 int32_t dayOfWeek,
46 fMonth(month), fDayOfMonth(dayOfMonth), fDayOfWeek(dayOfWeek), fWeekInMonth(0), fMillisInDay(millisInDay),
simpletz.cpp 274 * The dayOfWeekInMonth and dayOfWeek parameters together specify how to calculate
277 * <li>If both dayOfWeekInMonth and dayOfWeek are positive, they specify the
280 * <li>If dayOfWeek is positive and dayOfWeekInMonth is negative, they specify
283 * <li>If dayOfWeek is zero and dayOfWeekInMonth is positive, dayOfWeekInMonth
286 * <li>If dayOfWeek is zero and dayOfWeekInMonth is negative, dayOfWeekInMonth
290 * <li>If dayOfWeek is negative and dayOfWeekInMonth is positive, they specify the
294 * <li>If dayOfWeek and DayOfWeekInMonth are both negative, they specify the
302 * @param dayOfWeek the daylight savings starting day-of-week. Please see
309 SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek,
314 startDayOfWeek = (int8_t)dayOfWeek;
    [all...]
  /external/icu/icu4c/source/test/intltest/
calcasts.h 35 int32_t dayOfWeek;

Completed in 661 milliseconds

1 2 3