Lines Matching refs:month

42     int year, month, day, hours, minutes, off_hours, off_minutes, fix;  in ISO8601_To_DateTime()  local
47 &year, &month, &day, &hours, &minutes, &seconds ); in ISO8601_To_DateTime()
56 &year, &month, &day, &hours, &minutes, &seconds, in ISO8601_To_DateTime()
66 &year, &month, &day, &hours, &minutes, &seconds, in ISO8601_To_DateTime()
88 aDateTime.Month = sal::static_int_cast< sal_uInt16 >(month); // 1-12 in ISO8601_To_DateTime()
137 sal_Int32 DateTimeHelper::convertMonthToInt (const OUString& month) in convertMonthToInt() argument
139 if (month.compareToAscii ("Jan") == 0) in convertMonthToInt()
141 else if (month.compareToAscii ("Feb") == 0) in convertMonthToInt()
143 else if (month.compareToAscii ("Mar") == 0) in convertMonthToInt()
145 else if (month.compareToAscii ("Apr") == 0) in convertMonthToInt()
147 else if (month.compareToAscii ("May") == 0) in convertMonthToInt()
149 else if (month.compareToAscii ("Jun") == 0) in convertMonthToInt()
151 else if (month.compareToAscii ("Jul") == 0) in convertMonthToInt()
153 else if (month.compareToAscii ("Aug") == 0) in convertMonthToInt()
155 else if (month.compareToAscii ("Sep") == 0) in convertMonthToInt()
157 else if (month.compareToAscii ("Oct") == 0) in convertMonthToInt()
159 else if (month.compareToAscii ("Nov") == 0) in convertMonthToInt()
161 else if (month.compareToAscii ("Dec") == 0) in convertMonthToInt()
209 int month = DateTimeHelper::convertMonthToInt ( in RFC2068_To_DateTime() local
211 if (month) in RFC2068_To_DateTime()
226 aDateTime.Month = sal::static_int_cast< sal_uInt16 >(month); in RFC2068_To_DateTime()