Home | History | Annotate | Download | only in libexslt

Lines Matching refs:Month

141 /* VALID_DAY should only be used when month is unknown */
186 #define DAY_IN_YEAR(day, month, year) \
188 dayInLeapYearByMonth[month - 1] : \
189 dayInYearByMonth[month - 1]) + day)
394 "Parsed month %02i\n", dt->mon);
402 * @mon: the month to format
1488 /* month */
1978 * Implements the EXSLT - Dates and Times month-in-year() function:
1979 * number date:month-in-year (string?)
1980 * Returns the month of a date as a number. If no argument is given,
2029 * Implements the EXSLT - Dates and Time month-name() function
2030 * string date:month-name (string?)
2031 * Returns the full name of the month of a date. If no argument is
2044 * The result is an English month name: one of 'January', 'February',
2066 int month;
2067 month = (int) exsltDateMonthInYear(dateTime);
2068 if (!VALID_MONTH(month))
2069 month = 0;
2070 return monthNames[month];
2077 * Implements the EXSLT - Dates and Time month-abbreviation() function
2078 * string date:month-abbreviation (string?)
2079 * Returns the abbreviation of the month of a date. If no argument is
2092 * The result is an English month abbreviation: one of 'Jan', 'Feb',
2114 int month;
2115 month = (int) exsltDateMonthInYear(dateTime);
2116 if(!VALID_MONTH(month))
2117 month = 0;
2118 return monthAbbreviations[month];
2194 * Implements the EXSLT - Dates and Times week-in-month() function
2195 * number date:week-in-month (string?)
2196 * The date:week-in-month function returns the week in a month of a
2199 * argument. For the purposes of numbering, the first day of the month
2201 * weeks in a month will often have less than 7 days in them).
2299 * Implements the EXSLT - Dates and Times day-in-month() function:
2300 * number date:day-in-month (string?)
2348 * Implements the EXSLT - Dates and Times day-of-week-in-month() function:
2349 * number date:day-of-week-in-month (string?)
2350 * Returns the day-of-the-week in a month of a date as a number
2528 * Implements the EXSLT - Dates and Times day-in-month() function:
2529 * number date:day-in-month (string?)
2574 * Implements the EXSLT - Dates and Times day-in-month() function:
2575 * number date:day-in-month (string?)
2621 * number date:day-in-month (string?)
3296 X_IN_Y(Month,Year)
3388 X_IN_Y(Week,Month)
3406 X_IN_Y(Day,Month)
3415 X_IN_Y(DayOfWeek,Month)
3734 xsltRegisterExtModuleFunction ((const xmlChar *) "day-in-month",
3746 xsltRegisterExtModuleFunction ((const xmlChar *) "day-of-week-in-month",
3764 xsltRegisterExtModuleFunction ((const xmlChar *) "month-abbreviation",
3767 xsltRegisterExtModuleFunction ((const xmlChar *) "month-in-year",
3770 xsltRegisterExtModuleFunction ((const xmlChar *) "month-name",
3785 xsltRegisterExtModuleFunction ((const xmlChar *) "week-in-month",
3832 (const xmlChar *) "day-in-month",
3848 (const xmlChar *) "day-of-week-in-month",
3872 (const xmlChar *) "month-abbreviation",
3876 (const xmlChar *) "month-in-year",
3880 (const xmlChar *) "month-name",
3900 (const xmlChar *) "week-in-month",