Home | History | Annotate | Download | only in i18n

Lines Matching refs:month

37     int8_t  month;
40 // Year Month Day
329 int32_t month = 0;
335 return kEraInfo[era].month-1;
338 return month;
341 int32_t JapaneseCalendar::getDefaultDayInMonth(int32_t eyear, int32_t month)
347 if(month == (kEraInfo[era].month-1)) {
389 // the binary search to handle the month/dom comparison.
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year);
416 // are the same, compare days of month. In the ERAS array
419 diff = internalGet(UCAL_MONTH) - (kEraInfo[i].month - 1);
421 fprintf(stderr, "diff now %d (M) = %d - %d - 1\n", diff, internalGet(UCAL_MONTH), kEraInfo[i].month);
515 int32_t nextEraMonth = kEraInfo[era + 1].month;