Home
last modified time | relevance | path

Searched refs:WEEK_OF_MONTH (Results 1 – 25 of 42) sorted by relevance

12

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DCalendarTestFmwk.java52 public final static int WOM = Calendar.WEEK_OF_MONTH;
237 Calendar.WEEK_OF_YEAR, Calendar.WEEK_OF_MONTH, in doLimitsTest()
371 int maxWOM = cal.getMaximum(Calendar.WEEK_OF_MONTH); in doTheoreticalLimitsTest()
372 int lmaxWOM = cal.getLeastMaximum(Calendar.WEEK_OF_MONTH); in doTheoreticalLimitsTest()
DCompatibilityTest.java573 c.set(Calendar.WEEK_OF_MONTH, 1); in TestDisambiguation765()
580 c.set(Calendar.WEEK_OF_MONTH, 5); in TestDisambiguation765()
588 c.set(Calendar.WEEK_OF_MONTH, 0); in TestDisambiguation765()
DIBMCalendarTest.java608 int wom1 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
614 int wom2 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
750 cal.set(Calendar.WEEK_OF_MONTH, test.wom); in TestJB1684()
1013 int maxMsInDay = handleGetLimit(Calendar.WEEK_OF_MONTH, Calendar.GREATEST_MINIMUM); in TestCoverage()
DCalendarRegressionTest.java1288 int field = Calendar.WEEK_OF_MONTH; in Test4166109()
1629 Calendar.WEEK_OF_MONTH, -1,
1633 Calendar.WEEK_OF_MONTH, 4,
1648 Calendar.WEEK_OF_MONTH, 2,
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DCalendarTestFmwk.java49 public final static int WOM = Calendar.WEEK_OF_MONTH;
234 Calendar.WEEK_OF_YEAR, Calendar.WEEK_OF_MONTH, in doLimitsTest()
368 int maxWOM = cal.getMaximum(Calendar.WEEK_OF_MONTH); in doTheoreticalLimitsTest()
369 int lmaxWOM = cal.getLeastMaximum(Calendar.WEEK_OF_MONTH); in doTheoreticalLimitsTest()
DCompatibilityTest.java570 c.set(Calendar.WEEK_OF_MONTH, 1); in TestDisambiguation765()
577 c.set(Calendar.WEEK_OF_MONTH, 5); in TestDisambiguation765()
585 c.set(Calendar.WEEK_OF_MONTH, 0); in TestDisambiguation765()
DIBMCalendarTest.java605 int wom1 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
611 int wom2 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
747 cal.set(Calendar.WEEK_OF_MONTH, test.wom); in TestJB1684()
1010 int maxMsInDay = handleGetLimit(Calendar.WEEK_OF_MONTH, Calendar.GREATEST_MINIMUM); in TestCoverage()
DCalendarRegressionTest.java1285 int field = Calendar.WEEK_OF_MONTH; in Test4166109()
1626 Calendar.WEEK_OF_MONTH, -1,
1630 Calendar.WEEK_OF_MONTH, 4,
1645 Calendar.WEEK_OF_MONTH, 2,
/external/icu/android_icu4j/src/main/java/android/icu/util/
DChineseCalendar.java478 { WEEK_OF_MONTH, DAY_OF_WEEK },
481 { WEEK_OF_MONTH, DOW_LOCAL },
488 { WEEK_OF_MONTH },
DCalendar.java752 public final static int WEEK_OF_MONTH = 4; field in Calendar
2509 case WEEK_OF_MONTH: in prepareGetActual()
2563 && field != WEEK_OF_MONTH && delta > 0) { in getActualHelper()
2833 case WEEK_OF_MONTH: in roll()
3156 case WEEK_OF_MONTH: in add()
4289 case WEEK_OF_MONTH: in getLimit()
5033 fields[WEEK_OF_MONTH] = weekNumber(dayOfMonth, dayOfWeek); in computeWeekFields()
5053 { WEEK_OF_MONTH, DAY_OF_WEEK },
5056 { WEEK_OF_MONTH, DOW_LOCAL },
5064 { WEEK_OF_MONTH },
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DChineseCalendar.java493 { WEEK_OF_MONTH, DAY_OF_WEEK },
496 { WEEK_OF_MONTH, DOW_LOCAL },
503 { WEEK_OF_MONTH },
DCalendar.java757 public final static int WEEK_OF_MONTH = 4; field in Calendar
2604 case WEEK_OF_MONTH: in prepareGetActual()
2658 && field != WEEK_OF_MONTH && delta > 0) { in getActualHelper()
2930 case WEEK_OF_MONTH: in roll()
3254 case WEEK_OF_MONTH: in add()
4410 case WEEK_OF_MONTH: in getLimit()
5198 fields[WEEK_OF_MONTH] = weekNumber(dayOfMonth, dayOfWeek); in computeWeekFields()
5219 { WEEK_OF_MONTH, DAY_OF_WEEK },
5222 { WEEK_OF_MONTH, DOW_LOCAL },
5230 { WEEK_OF_MONTH },
[all …]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
DCalendar.java736 public final static int WEEK_OF_MONTH = 4; field in Calendar
2443 case WEEK_OF_MONTH: in getJDKField()
2444 return java.util.Calendar.WEEK_OF_MONTH; in getJDKField()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DSimpleDateFormat.java522 } else if (attr.equals(java.text.DateFormat.Field.WEEK_OF_MONTH)) { in formatToCharacterIterator()
523 val = attr = Field.WEEK_OF_MONTH; in formatToCharacterIterator()
DDateFormat.java1782 public static final Field WEEK_OF_MONTH = field in DateFormat.Field
1783 new Field("week of month", Calendar.WEEK_OF_MONTH);
2064 } else if (fieldAttribute.equals(Field.WEEK_OF_MONTH)) { in toJDKFieldPosition()
2065 fieldAttribute = java.text.DateFormat.Field.WEEK_OF_MONTH; in toJDKFieldPosition()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
DCalendarPanel.java147 int firstWeek = c.get(Calendar.WEEK_OF_MONTH); in calculate()
163 int lastWeek = c.get(Calendar.WEEK_OF_MONTH); in calculate()
DCalendarCalc.java95 new RollAddField(Calendar.WEEK_OF_MONTH, "Week of Month" ),
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DDebugUtilitiesData.java130 android.icu.util.Calendar.WEEK_OF_MONTH, /* 4 */
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DDebugUtilitiesData.java126 com.ibm.icu.util.Calendar.WEEK_OF_MONTH, /* 4 */
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DSimpleDateFormatICU.java349 } else if (icuAttribute == DateFormat.Field.WEEK_OF_MONTH) { in mapAttribute()
350 jdkAttribute = java.text.DateFormat.Field.WEEK_OF_MONTH; in mapAttribute()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormat.java2398 public static final Field WEEK_OF_MONTH = field in DateFormat.Field
2399 new Field("week of month", Calendar.WEEK_OF_MONTH);
DDateTimePatternGenerator.java1064 public static final int WEEK_OF_MONTH = 5; field in DateTimePatternGenerator
2329 {'W', WEEK_OF_MONTH, NUMERIC, 1},
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormat.java2220 public static final Field WEEK_OF_MONTH = field in DateFormat.Field
2221 new Field("week of month", Calendar.WEEK_OF_MONTH);
DDateTimePatternGenerator.java1040 public static final int WEEK_OF_MONTH = 5; field in DateTimePatternGenerator
2306 {'W', WEEK_OF_MONTH, NUMERIC, 1},
/external/icu/icu4c/source/i18n/unicode/
Dcalendar.h206 WEEK_OF_MONTH, // Example: 1..4 enumerator

12