Home | History | Annotate | Download | only in datecal

Lines Matching refs:gc

20   GregorianCalendar* gc = new GregorianCalendar(status);
26 gc->set(2000, UCAL_FEBRUARY, 26);
27 gc->set(UCAL_HOUR_OF_DAY, 23);
28 gc->set(UCAL_MINUTE, 0);
29 gc->set(UCAL_SECOND, 0);
30 gc->set(UCAL_MILLISECOND, 0);
36 gc->get(UCAL_YEAR, status),
37 gc->get(UCAL_MONTH, status) + 1,
38 gc->get(UCAL_MONTH, status),
39 gc->get(UCAL_DATE, status));
46 gc->add(UCAL_DATE, 1, status);
52 delete gc;