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));
412 logln("HOUR: " + Calendar::get(Calendar::HOUR));
438 logln("HOUR: " + Calendar::get(Calendar::HOUR));
503 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
505 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
807 cal1.set( Calendar::HOUR, 10 );
820 cal2.set( Calendar::HOUR, 10 );
880 errln("Fail: Hour same in different zones");
1350 log(UnicodeString(" add (HOUR,") + (amt<0?"":"+")+amt + ")= ");
1354 log(UnicodeString(" roll(HOUR,") + (amt<0?"":"+")+amt + ")= ");
1376 * Make sure maximum for HOUR field is 11, not 12.
1390 errln("Fail: maximum of HOUR field should be 11");
1393 if (cal->getLeastMaximum(Calendar::HOUR) != 11 ||
1394 cal->getMaximum(Calendar::HOUR) != 11) {
1395 errln("Fail: [deprecated functions] maximum of HOUR field should be 11\n");
1398 if (cal->getGreatestMinimum(Calendar::HOUR) != 0 ||
1399 cal->getMinimum(Calendar::HOUR) != 0) {
1400 errln("Fail: [deprecated functions] minimum of HOUR field should be 1\n");
1406 if (cal->getLeastMaximum(Calendar::HOUR) != 11 ||
1407 cal->getMaximum(Calendar::HOUR) != 11) {
1408 errln("Fail: Buddhist:[deprecated functions] maximum of HOUR field should be 11\n");
1411 if (cal->getGreatestMinimum(Calendar::HOUR) != 0 ||
1412 cal->getMinimum(Calendar::HOUR) != 0) {
1413 errln("Fail: Buddhist:[deprecated functions] minimum of HOUR field should be 1\n");
1419 if (cal->getLeastMaximum(Calendar::HOUR) != 11 ||
1420 cal->getMaximum(Calendar::HOUR) != 11) {
1421 errln("Fail: Japanese:[deprecated functions] maximum of HOUR field should be 11\n");
1424 if (cal->getGreatestMinimum(Calendar::HOUR) != 0 ||
1425 cal->getMinimum(Calendar::HOUR) != 0) {
1426 errln("Fail: Japanese:[deprecated functions] minimum of HOUR field should be 1\n");
1735 * Calendar and Date HOUR broken. If HOUR is out-of-range, Calendar
2637 * different day. The DST adjustments we use to keep the hour
2734 dataerrln("Couldn't create calendars for roll of HOUR: %s", u_errorName(status));
2742 c1->roll(Calendar::HOUR,(int32_t)3,status);
2752 c1->roll(Calendar::HOUR,(UBool)FALSE,status);
2770 errln("Couldn't create calendars for add of HOUR");
2778 c1->add(Calendar::HOUR,(int32_t)1,status);
2781 errln("Error code when trying to add Calendar::HOUR - %s", u_errorName(status));