Home | History | Annotate | Download | only in calendarcommon2

Lines Matching refs:monthDay

234                                 iterator.monthDay,
329 int dotw = (instance.weekDay - instance.monthDay + 36) % 7;
371 if (daySet[index-1] == instance.monthDay) {
378 if (daySet[daySetLength + index] == instance.monthDay) {
440 + "/" + iterator.monthDay
450 day = t.monthDay;
453 + "/" + t.monthDay
470 + "/" + t.monthDay
510 j = generated.monthDay;
830 iterator.monthDay = 1;
881 int iteratorDay = iterator.monthDay;
928 dayIndex = iterator.monthDay - weekStartAdj;
1068 int oldDay = iterator.monthDay;
1084 iterator.monthDay += value;
1093 iterator.monthDay += value;
1096 iterator.monthDay += value;
1106 if (iterator.monthDay == oldDay) {
1142 int monthDay = date.monthDay;
1154 monthDay += addDays;
1156 // We want to make "monthDay" positive. We do this by subtracting one
1157 // from the year and adding a year's worth of days to "monthDay" in
1158 // the following loop while "monthDay" <= 0.
1159 while (monthDay <= 0) {
1164 // effective date but makes monthDay (the day of the month) much
1165 // larger. Eventually (usually in one iteration) monthDay will
1168 monthDay += days;
1171 // At this point, monthDay >= 1. Normalize the month to the range [0,11].
1181 // At this point, month is in the range [0,11] and monthDay >= 1.
1182 // Now loop until the monthDay is in the correct range for the month.
1187 if (monthDay > yearLength) {
1189 monthDay -= yearLength;
1193 if (monthDay > monthLength) {
1194 monthDay -= monthLength;
1202 // At this point, monthDay <= the length of the current month and is
1208 date.monthDay = monthDay;
1211 date.weekDay = weekDay(year, month, monthDay);
1212 date.yearDay = yearDay(year, month, monthDay);
1301 // 37 bits for the year, 4 bits for the month, 5 bits for the monthDay,
1304 + (normalized.monthDay << 17) + (normalized.hour << 12)
1311 date.monthDay = (int) (val >> 17) & 0x1f;