Home
last modified time | relevance | path

Searched refs:gmtcal (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DCompatibilityTest.java650 Calendar gmtcal = Calendar.getInstance(); in aux4064654() local
651 gmtcal.setTimeZone(TimeZone.getTimeZone("Africa/Casablanca")); in aux4064654()
652 gmtcal.set(yr, mo-1, dt, hr, mn, sc); in aux4064654()
653 gmtcal.set(Calendar.MILLISECOND, 0); in aux4064654()
655 date = gmtcal.getTime(); in aux4064654()
/external/icu/icu4c/source/test/cintltst/
Dccaltst.c1278 UCalendar *gmtcal = 0, *cal = 0; in testZones() local
1287 gmtcal=ucal_open(tzID, 3, "en_US", UCAL_TRADITIONAL, &status);; in testZones()
1304 ucal_setDateTime(gmtcal, yr, mo - 1, dt, hr, mn, sc, &status); in testZones()
1309 ucal_set(gmtcal, UCAL_MILLISECOND, 0); in testZones()
1310 date1 = ucal_getMillis(gmtcal, &status); in testZones()
1350 ucal_close(gmtcal); in testZones()
/external/icu/icu4c/source/test/intltest/
Dcaltest.cpp933 Calendar *gmtcal = Calendar::createInstance(status); in test4064654() local
935 gmtcal->adoptTimeZone(TimeZone::createTimeZone("Africa/Casablanca")); in test4064654()
936 gmtcal->set(yr, mo - 1, dt, hr, mn, sc); in test4064654()
937 gmtcal->set(UCAL_MILLISECOND, 0); in test4064654()
938 date = gmtcal->getTime(status); in test4064654()
961 delete gmtcal; in test4064654()