Home | History | Annotate | Download | only in datecal

Lines Matching defs:status

24 UErrorCode status = U_ZERO_ERROR;
26 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
27 if (U_FAILURE(status)) {
44 ucal_get(cal, UCAL_YEAR, &status),
45 ucal_get(cal, UCAL_MONTH, &status) + 1,
46 ucal_get(cal, UCAL_MONTH, &status),
47 ucal_get(cal, UCAL_DATE, &status));
48 if (U_FAILURE(status)) {
53 ucal_add(cal, UCAL_DATE, 1, &status);
54 if (U_FAILURE(status))