Home | History | Annotate | Download | only in cal

Lines Matching refs:months

64                        UChar *months [], UBool useLongNames,
67 static void free_months(UChar *months[]);
79 UChar *days [], UChar *months [],
89 /* Number of months in a year (yes, 13) */
92 /* Separation between months in year view */
168 /* Adjust because months are 0-based */
233 UChar *months [MONTH_COUNT];
253 print_year(c, days, months, useLongNames, fdow, status);
359 UChar *months [],
368 get_symbols(fmt, monthType, months, MONTH_COUNT - 1, 0, 0, status); /* some locales have 13 months, no idea why */
371 static void free_months(UChar *months[])
373 free_symbols(months, MONTH_COUNT - 1);
537 UChar *months [],
569 get_months(dfmt, months, useLongNames, status);
581 with MARGIN_WIDTH spaces between months */
597 /* ========== Calculate and display the months, two at a time */
600 /* Print the month names for the two current months */
601 pad = width - u_strlen(months[i]);
603 uprint(months[i], stdout, status);
605 pad = width - u_strlen(months[i + 1]);
607 uprint(months[i + 1], stdout, status);
705 /* Indent between the two months */
755 free_months(months);