Home | History | Annotate | Download | only in intltest

Lines Matching refs:HOUR

106     "HOUR", 
168 logln(UnicodeString("HOUR=") + cal->get(UCAL_HOUR, status)); //prints 0
286 ": HOUR = " + cal->get(UCAL_HOUR,status));
413 logln("HOUR: " + Calendar::get(Calendar::HOUR));
439 logln("HOUR: " + Calendar::get(Calendar::HOUR));
504 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
506 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
808 cal1.set( Calendar::HOUR, 10 );
821 cal2.set( Calendar::HOUR, 10 );
881 errln("Fail: Hour same in different zones");
1351 log(UnicodeString(" add (HOUR,") + (amt<0?"":"+")+amt + ")= ");
1355 log(UnicodeString(" roll(HOUR,") + (amt<0?"":"+")+amt + ")= ");
1377 * Make sure maximum for HOUR field is 11, not 12.
1391 errln("Fail: maximum of HOUR field should be 11");
1394 if (cal->getLeastMaximum(Calendar::HOUR) != 11 ||
1395 cal->getMaximum(Calendar::HOUR) != 11) {
1396 errln("Fail: [deprecated functions] maximum of HOUR field should be 11\n");
1399 if (cal->getGreatestMinimum(Calendar::HOUR) != 0 ||
1400 cal->getMinimum(Calendar::HOUR) != 0) {
1401 errln("Fail: [deprecated functions] minimum of HOUR field should be 1\n");
1407 if (cal->getLeastMaximum(Calendar::HOUR) != 11 ||
1408 cal->getMaximum(Calendar::HOUR) != 11) {
1409 errln("Fail: Buddhist:[deprecated functions] maximum of HOUR field should be 11\n");
1412 if (cal->getGreatestMinimum(Calendar::HOUR) != 0 ||
1413 cal->getMinimum(Calendar::HOUR) != 0) {
1414 errln("Fail: Buddhist:[deprecated functions] minimum of HOUR field should be 1\n");
1420 if (cal->getLeastMaximum(Calendar::HOUR) != 11 ||
1421 cal->getMaximum(Calendar::HOUR) != 11) {
1422 errln("Fail: Japanese:[deprecated functions] maximum of HOUR field should be 11\n");
1425 if (cal->getGreatestMinimum(Calendar::HOUR) != 0 ||
1426 cal->getMinimum(Calendar::HOUR) != 0) {
1427 errln("Fail: Japanese:[deprecated functions] minimum of HOUR field should be 1\n");
1736 * Calendar and Date HOUR broken. If HOUR is out-of-range, Calendar
2638 * different day. The DST adjustments we use to keep the hour
2735 dataerrln("Couldn't create calendars for roll of HOUR: %s", u_errorName(status));
2743 c1->roll(Calendar::HOUR,(int32_t)3,status);
2753 c1->roll(Calendar::HOUR,(UBool)FALSE,status);
2771 errln("Couldn't create calendars for add of HOUR");
2779 c1->add(Calendar::HOUR,(int32_t)1,status);
2782 errln("Error code when trying to add Calendar::HOUR - %s", u_errorName(status));