Home | History | Annotate | Download | only in i18n

Lines Matching defs:dim

2760         int32_t dim = internalGet(UCAL_DAY_OF_WEEK_IN_MONTH, 1);
2761 if (dim >= 0) {
2762 date += 7*(dim - 1);
2766 // then back up as needed. If dim==-1, we don't back up at
2767 // all. If dim==-2, we back up once, etc. Don't back up
2773 date += ((monthLength - date) / 7 + dim + 1) * 7;