Home | History | Annotate | Download | only in intltest

Lines Matching full:month

506         cal->roll(Calendar::MONTH, (int32_t)100, status);
529 int32_t year = 1997, month = UCAL_APRIL, date = 1;
530 gc->set(year, month, date);
538 gc->get(UCAL_MONTH, status) != month ||
744 CalendarTest::verify765(const UnicodeString& msg, Calendar* c, int32_t year, int32_t month, int32_t day)
752 m == month &&
759 errln("FAIL: " + msg + dateToString(c->getTime(status), str) + "; expected " + (int32_t)year + "/" + (int32_t)(month + 1) + "/" + (int32_t)day +
1244 int32_t month = UCAL_OCTOBER;
1247 calendar = new GregorianCalendar(year, month, dDate, status);
1352 * identically when adding. YEAR should keep the month/dom
1406 * When adding the YEAR, the month and day should remain constant.
1441 (y+1) + ", month " + (mon+1) + ", day " + day;
2131 for (int32_t month = HebrewCalendar::TISHRI; month <= HebrewCalendar::ELUL; month++) {
2132 // skip the adar 1 month if year is not a leap year
2133 if (HebrewCalendar::isLeapYear(year) == FALSE && month == HebrewCalendar::ADAR_1) {
2137 hc.set(year,month,day);
2148 if (monthHC != month) {
2149 errln(" ==> month %d incorrect, should be: %d\n",monthHC,month);