Home | History | Annotate | Download | only in datecal

Lines Matching defs:gc

26   GregorianCalendar* gc = new GregorianCalendar(status);
32 gc->set(2000, UCAL_FEBRUARY, 26);
33 gc->set(UCAL_HOUR_OF_DAY, 23);
34 gc->set(UCAL_MINUTE, 0);
35 gc->set(UCAL_SECOND, 0);
36 gc->set(UCAL_MILLISECOND, 0);
42 gc->get(UCAL_YEAR, status),
43 gc->get(UCAL_MONTH, status) + 1,
44 gc->get(UCAL_MONTH, status),
45 gc->get(UCAL_DATE, status));
52 gc->add(UCAL_DATE, 1, status);
58 delete gc;