Home | History | Annotate | Download | only in intltest

Lines Matching full:roll

414     logln("cal->roll(UCAL_SECOND)");
415 cal->roll(UCAL_SECOND, (UBool) TRUE, status);
417 cal->roll(UCAL_SECOND, (int32_t)0, status);
419 if (failure(status, "Calendar::roll")) return;
425 errln("FAIL: equals[%c]/before[%c]/after[%c] failed after roll 1 second [should be T/F/F]",
433 // Roll back to January
434 cal->roll(UCAL_MONTH, (int32_t)(1 + UCAL_DECEMBER - cal->get(UCAL_MONTH, status)), status);
435 if (failure(status, "Calendar::roll")) return;
517 cal3->roll(Calendar::SECOND, (int32_t)0, status);
518 if (failure(status, "Calendar::roll(EDateFields, int32_t, UErrorCode)")) return;
593 ((Calendar *)cal)->roll(UCAL_HOUR, (int32_t)100, status);
607 cal->roll(Calendar::MONTH, (int32_t)100, status);
1115 logln("Testing GregorianCalendar roll...");
1123 temp->roll(e, 1, status);
1125 logln("caltest.cpp:%d e=%d, i=%d - roll(+) err %s\n", __LINE__, (int) e, (int) i, u_errorName(status));
1133 temp->roll(e, -1, status);
1134 if (U_FAILURE(status)) { errln(UnicodeString("GregorianCalendar::roll ") + CalendarTest::fieldName(e) + " count=" + UnicodeString('@'+i) + " by -1 failed with " + u_errorName(status) ); return; }
1637 cal->roll(field,(int32_t)1,errorCode);
1638 if (U_FAILURE(errorCode)) { errln("Error in roll"); delete calclone; return; }
1639 calclone->roll(field2,(int32_t)1,errorCode);
1640 if (U_FAILURE(errorCode)) { errln("Error in roll"); delete calclone; return; }
1643 errln("Results of roll differ!");
1973 // Roll the DOW_LOCAL within week 52
1977 str = "roll(";
1984 cal.roll(UCAL_DOW_LOCAL, amount, status);
1985 CHECK(status, "Fail: roll failed");
3278 tstCal->roll(UCAL_DAY_OF_MONTH, (UBool)TRUE, status);
3283 errln("invalid values for RABI_2 date after roll of %d", loopCnt);