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.java50 public final static int WOM = Calendar.WEEK_OF_MONTH;
235 Calendar.WEEK_OF_YEAR, Calendar.WEEK_OF_MONTH, in doLimitsTest()
369 int maxWOM = cal.getMaximum(Calendar.WEEK_OF_MONTH); in doTheoreticalLimitsTest()
370 int lmaxWOM = cal.getLeastMaximum(Calendar.WEEK_OF_MONTH); in doTheoreticalLimitsTest()
DCompatibilityTest.java567 c.set(Calendar.WEEK_OF_MONTH, 1); in TestDisambiguation765()
574 c.set(Calendar.WEEK_OF_MONTH, 5); in TestDisambiguation765()
582 c.set(Calendar.WEEK_OF_MONTH, 0); in TestDisambiguation765()
DIBMCalendarTest.java603 int wom1 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
609 int wom2 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
745 cal.set(Calendar.WEEK_OF_MONTH, test.wom); in TestJB1684()
1008 int maxMsInDay = handleGetLimit(Calendar.WEEK_OF_MONTH, Calendar.GREATEST_MINIMUM); in TestCoverage()
DCalendarRegressionTest.java1279 int field = Calendar.WEEK_OF_MONTH; in Test4166109()
1620 Calendar.WEEK_OF_MONTH, -1,
1624 Calendar.WEEK_OF_MONTH, 4,
1639 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.java566 c.set(Calendar.WEEK_OF_MONTH, 1); in TestDisambiguation765()
573 c.set(Calendar.WEEK_OF_MONTH, 5); in TestDisambiguation765()
581 c.set(Calendar.WEEK_OF_MONTH, 0); in TestDisambiguation765()
DIBMCalendarTest.java602 int wom1 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
608 int wom2 = cal.get(Calendar.WEEK_OF_MONTH); in TestWeekShift()
744 cal.set(Calendar.WEEK_OF_MONTH, test.wom); in TestJB1684()
1007 int maxMsInDay = handleGetLimit(Calendar.WEEK_OF_MONTH, Calendar.GREATEST_MINIMUM); in TestCoverage()
DCalendarRegressionTest.java1278 int field = Calendar.WEEK_OF_MONTH; in Test4166109()
1619 Calendar.WEEK_OF_MONTH, -1,
1623 Calendar.WEEK_OF_MONTH, 4,
1638 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.java751 public final static int WEEK_OF_MONTH = 4; field in Calendar
2533 case WEEK_OF_MONTH: in prepareGetActual()
2587 && field != WEEK_OF_MONTH && delta > 0) { in getActualHelper()
2857 case WEEK_OF_MONTH: in roll()
3180 case WEEK_OF_MONTH: in add()
4312 case WEEK_OF_MONTH: in getLimit()
5056 fields[WEEK_OF_MONTH] = weekNumber(dayOfMonth, dayOfWeek); in computeWeekFields()
5076 { WEEK_OF_MONTH, DAY_OF_WEEK },
5079 { WEEK_OF_MONTH, DOW_LOCAL },
5087 { 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.java756 public final static int WEEK_OF_MONTH = 4; field in Calendar
2628 case WEEK_OF_MONTH: in prepareGetActual()
2682 && field != WEEK_OF_MONTH && delta > 0) { in getActualHelper()
2954 case WEEK_OF_MONTH: in roll()
3278 case WEEK_OF_MONTH: in add()
4434 case WEEK_OF_MONTH: in getLimit()
5222 fields[WEEK_OF_MONTH] = weekNumber(dayOfMonth, dayOfWeek); in computeWeekFields()
5243 { WEEK_OF_MONTH, DAY_OF_WEEK },
5246 { WEEK_OF_MONTH, DOW_LOCAL },
5254 { 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.java127 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.java2391 public static final Field WEEK_OF_MONTH = field in DateFormat.Field
2392 new Field("week of month", Calendar.WEEK_OF_MONTH);
DDateTimePatternGenerator.java1006 public static final int WEEK_OF_MONTH = 5; field in DateTimePatternGenerator
2188 {'W', WEEK_OF_MONTH, NUMERIC + DELTA, 1},
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormat.java2213 public static final Field WEEK_OF_MONTH = field in DateFormat.Field
2214 new Field("week of month", Calendar.WEEK_OF_MONTH);
DDateTimePatternGenerator.java982 public static final int WEEK_OF_MONTH = 5; field in DateTimePatternGenerator
2163 {'W', WEEK_OF_MONTH, NUMERIC + DELTA, 1},
/external/icu/icu4c/source/i18n/unicode/
Dcalendar.h223 WEEK_OF_MONTH, // Example: 1..4 enumerator

12