Home | History | Annotate | Download | only in chrono

Lines Matching refs:years

105  * Ordinary years have 354 days; leap years have 355 days.
147 * ISO calendar, and the length of each month for a range of years.
903 Map<Integer, int[]> years = new HashMap<>();
932 years.put(year, months);
957 hijrahEpochMonthStartDays = createEpochMonths(minEpochDay, minYear, maxYear, years);
982 * @param years a Map of year to the array of 12 month lengths
985 private int[] createEpochMonths(int epochDay, int minYear, int maxYear, Map<Integer, int[]> years) {
995 // Only whole years are valid, any zero's in the array are illegal
997 int[] months = years.get(year);// must not be gaps