Lines Matching refs:month

222         int month;
238 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, rrule.month);
277 // MSFT month = 0 means no daylight time
283 tzd.month = num -1;
317 testCalendar.set(GregorianCalendar.MONTH, tzd.month);
395 int month;
399 * Create an RRULE based on month and date
400 * @param _month the month (1 = JAN, 12 = DEC)
401 * @param _date the date in the month (1-31)
405 month = _month;
410 * Create an RRULE based on month, day of week, and week #
411 * @param _month the month (1 = JAN, 12 = DEC)
413 * @param _week the week in the month (1-5 or -1 for last)
417 month = _month;
425 return "FREQ=YEARLY;BYMONTH=" + month + ";BYDAY=" + week +
428 return "FREQ=YEARLY;BYMONTH=" + month + ";BYMONTHDAY=" + date;
435 * only looking for rules based on the same date in a month or a specific instance of a day of
436 * the week in a month (e.g. 2nd Tuesday or last Friday). Indeed, these are the only kinds of
446 int month = calendar.get(Calendar.MONTH);
456 // If it's not the same month, there's no rule
457 if (cal.get(Calendar.MONTH) != month) {
478 // Maybe the same day of the month?
489 return new RRule(month + 1, date);
494 return new RRule(month + 1, dayOfWeek, week);
705 // Write month, day of week, week, hour, minute
987 * Returns a UTC calendar with year/month/day from local calendar and h/m/s/ms = 0
996 * Returns a local calendar with year/month/day from UTC calendar and h/m/s/ms = 0
1009 // Set this calendar with correct year, month, and day, but zero hour, minute, and seconds
1045 // 127 means last day of the month
1102 // Build a string with local year/month/date
1207 // Special case for last day of month
1213 // The nth day of the month
1239 // Calculate the month and day from the startDate
1269 * @param dom day of the month
1270 * @param wom week of the month
1271 * @param moy month of the year
1296 // 127 is a special case meaning "last day of the month"