OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:testCal
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/test/intltest/
tzregts.cpp
311
GregorianCalendar *
testCal
= (GregorianCalendar*)Calendar::createInstance(status);
314
delete
testCal
;
331
//
testCal
->setTimeZone((TimeZone) testData[i]);
332
testCal
->setTimeZone(*PST);
335
while(
testCal
->getTime(status) < end) {
336
testCal
->setTime(t, status);
337
if ( ! checkCalendar314(
testCal
, PST))
345
delete
testCal
;
350
TimeZoneRegressionTest::checkCalendar314(GregorianCalendar *
testCal
, TimeZone *testTZ)
353
// GregorianCalendar
testCal
= (GregorianCalendar)aCal.clone();
[
all
...]
calregts.cpp
911
GregorianCalendar *
testCal
= (GregorianCalendar*)Calendar::createInstance(status);
914
delete
testCal
;
917
testCal
->clear();
918
sdf.adoptCalendar(
testCal
);
923
testCal
->setMinimalDaysInFirstWeek((uint8_t)minDays);
924
testCal
->setFirstDayOfWeek((UCalendarDaysOfWeek)firstDay);
931
testCal
->set(j,11,25);
933
testCal
->add(UCAL_DATE,1,status);
935
int32_t actWOY =
testCal
->get(UCAL_WEEK_OF_YEAR,status);
937
UDate d =
testCal
->getTime(status);
[
all
...]
/dalvik/libcore/sql/src/test/java/tests/sql/
ResultSetGetterTests.java
544
GregorianCalendar
testCal
= new GregorianCalendar(1799, Calendar.MAY, 26, 0, 0);
545
Date input = new Date(
testCal
.getTimeInMillis());
582
GregorianCalendar
testCal
= new GregorianCalendar(1799, Calendar.MAY, 26, 0, 0);
585
Date input = new Date(
testCal
.getTimeInMillis());
586
Date d = res.getDate(15,
testCal
);
595
Date d = res.getDate(500,
testCal
);
607
Date d = res.getDate(15,
testCal
);
625
GregorianCalendar
testCal
= new GregorianCalendar(1799, Calendar.MAY, 26, 0, 0);
626
Date input = new Date(
testCal
.getTimeInMillis());
661
GregorianCalendar
testCal
= new GregorianCalendar(1799, Calendar.MAY, 26, 0, 0)
[
all
...]
Completed in 26 milliseconds