Home | History | Annotate | Download | only in datecal

Lines Matching refs:status

18 UErrorCode status = U_ZERO_ERROR;
20 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
21 if (U_FAILURE(status)) {
38 ucal_get(cal, UCAL_YEAR, &status),
39 ucal_get(cal, UCAL_MONTH, &status) + 1,
40 ucal_get(cal, UCAL_MONTH, &status),
41 ucal_get(cal, UCAL_DATE, &status));
42 if (U_FAILURE(status)) {
47 ucal_add(cal, UCAL_DATE, 1, &status);
48 if (U_FAILURE(status))