Lines Matching refs:get
212 int32_t offset = time_zone->getOffset((uint8_t)gc->get(UCAL_ERA, status),
213 gc->get(UCAL_YEAR, status), gc->get(UCAL_MONTH, status),
214 gc->get(UCAL_DATE, status), (uint8_t)gc->get(UCAL_DAY_OF_WEEK, status),
215 ((gc->get(UCAL_HOUR_OF_DAY, status) * 60 + gc->get(UCAL_MINUTE, status)) * 60 + gc->get(UCAL_SECOND, status)) * 1000 + gc->get(UCAL_MILLISECOND, status),
217 if (failure(status, "GregorianCalendar::get")) return;
250 if (cal.get(UCAL_YEAR, status) == year &&
251 cal.get(UCAL_MONTH, status) == month &&
252 cal.get(UCAL_DATE, status) == dom &&
253 cal.get(UCAL_MILLISECONDS_IN_DAY, status) == hour * 3600000) {
255 cal.get(UCAL_YEAR, status) + "/" +
256 (cal.get(UCAL_MONTH, status)+1) + "/" +
257 cal.get(UCAL_DATE, status) + " " +
258 cal.get(UCAL_MILLISECOND, status)/H);
261 cal.get(UCAL_YEAR, status) + "/" +
262 (cal.get(UCAL_MONTH, status)+1) + "/" +
263 cal.get(UCAL_DATE, status) + " " +
264 cal.get(UCAL_MILLISECOND, status)/H +