Home | History | Annotate | Download | only in intltest

Lines Matching full:roll

406     logln("cal->roll(UCAL_SECOND)");
407 cal->roll(UCAL_SECOND, (UBool) TRUE, status);
409 cal->roll(UCAL_SECOND, (int32_t)0, status);
411 if (failure(status, "Calendar::roll")) return;
417 errln("FAIL: equals[%c]/before[%c]/after[%c] failed after roll 1 second [should be T/F/F]",
425 // Roll back to January
426 cal->roll(UCAL_MONTH, (int32_t)(1 + UCAL_DECEMBER - cal->get(UCAL_MONTH, status)), status);
427 if (failure(status, "Calendar::roll")) return;
509 cal3->roll(Calendar::SECOND, (int32_t)0, status);
510 if (failure(status, "Calendar::roll(EDateFields, int32_t, UErrorCode)")) return;
582 ((Calendar *)cal)->roll(UCAL_HOUR, (int32_t)100, status);
596 cal->roll(Calendar::MONTH, (int32_t)100, status);
1104 logln("Testing GregorianCalendar roll...");
1112 temp->roll(e, 1, status);
1114 logln("caltest.cpp:%d e=%d, i=%d - roll(+) err %s\n", __LINE__, (int) e, (int) i, u_errorName(status));
1122 temp->roll(e, -1, status);
1123 if (U_FAILURE(status)) { errln(UnicodeString("GregorianCalendar::roll ") + CalendarTest::fieldName(e) + " count=" + UnicodeString('@'+i) + " by -1 failed with " + u_errorName(status) ); return; }
1626 cal->roll(field,(int32_t)1,errorCode);
1627 if (U_FAILURE(errorCode)) { errln("Error in roll"); delete calclone; return; }
1628 calclone->roll(field2,(int32_t)1,errorCode);
1629 if (U_FAILURE(errorCode)) { errln("Error in roll"); delete calclone; return; }
1632 errln("Results of roll differ!");
1962 // Roll the DOW_LOCAL within week 52
1966 str = "roll(";
1973 cal.roll(UCAL_DOW_LOCAL, amount, status);
1974 CHECK(status, "Fail: roll failed");
2844 tstCal->roll(UCAL_DAY_OF_MONTH, (UBool)TRUE, status);
2849 errln("invalid values for RABI_2 date after roll of %d", loopCnt);