Home | History | Annotate | Download | only in intltest

Lines Matching refs:rootChineseCalendar

4119     Calendar * rootChineseCalendar = Calendar::createInstance(rootChineseCalLocale, status);
4132 rootChineseCalendar->clear();
4133 rootChineseCalendar->set(UCAL_ERA, datePtr->era);
4134 rootChineseCalendar->set(datePtr->year, datePtr->month-1, datePtr->day);
4135 rootChineseCalendar->set(UCAL_IS_LEAP_MONTH, datePtr->isLeapMonth);
4138 dmft->format(*rootChineseCalendar, result, fpos);
4146 rootChineseCalendar->set(UCAL_YEAR, 1);
4147 rootChineseCalendar->set(UCAL_MONTH, 0);
4148 rootChineseCalendar->set(UCAL_IS_LEAP_MONTH, 0);
4149 rootChineseCalendar->set(UCAL_DATE, 1);
4151 dmft->parse(result, *rootChineseCalendar, ppos);
4152 int32_t year = rootChineseCalendar->get(UCAL_YEAR, status);
4153 int32_t month = rootChineseCalendar->get(UCAL_MONTH, status) + 1;
4154 int32_t isLeapMonth = rootChineseCalendar->get(UCAL_IS_LEAP_MONTH, status);
4155 int32_t day = rootChineseCalendar->get(UCAL_DATE, status);
4171 delete rootChineseCalendar;