| /trunk/main/i18npool/source/calendar/ |
| H A D | calendar_jewish.cxx | 123 sal_Int32 LastDayOfHebrewMonth(sal_Int32 month, sal_Int32 year) { in LastDayOfHebrewMonth() argument 124 if ((month == 2) in LastDayOfHebrewMonth() 125 || (month == 4) in LastDayOfHebrewMonth() 126 || (month == 6) in LastDayOfHebrewMonth() 127 || ((month == 8) && !(LongHeshvan(year))) in LastDayOfHebrewMonth() 128 || ((month == 9) && ShortKislev(year)) in LastDayOfHebrewMonth() 129 || (month == 10) in LastDayOfHebrewMonth() 130 || ((month == 12) && !(HebrewLeapYear(year))) in LastDayOfHebrewMonth() 131 || (month == 13)) in LastDayOfHebrewMonth() 141 sal_Int32 month; // 1..LastMonthOfHebrewYear(year) member in HebrewDate [all …]
|
| H A D | calendar_hijri.cxx | 79 sal_Int32 month = (sal_Int32)fieldSetValue[CalendarFieldIndex::MONTH] + 1; in mapToGregorian() local 84 ToGregorian(&day, &month, &year); in mapToGregorian() 87 fieldSetValue[CalendarFieldIndex::MONTH] = sal::static_int_cast<sal_Int16>(month - 1); in mapToGregorian() 97 sal_Int32 month, day, year; in mapFromGregorian() local 100 month = (sal_Int32)fieldValue[CalendarFieldIndex::MONTH] + 1; in mapFromGregorian() 106 getHijri(&day, &month, &year); in mapFromGregorian() 109 fieldValue[CalendarFieldIndex::MONTH] = sal::static_int_cast<sal_Int16>(month - 1); in mapFromGregorian() 179 Calendar_hijri::getHijri(sal_Int32 *day, sal_Int32 *month, sal_Int32 *year) in getHijri() argument 190 julday = getJulianDay(*day, *month, *year); in getHijri() 211 *month = (syndiff % 12) + 1; in getHijri() [all …]
|
| /trunk/main/ucb/source/ucp/webdav/ |
| H A D | DateTimeHelper.cxx | 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() [all …]
|
| /trunk/test/testuno/source/api/i18n/ |
| H A D | XExtendedCalendarTest.java | 119 int month = cal.get(Calendar.MONTH) + 1; in _getDisplayString() local 122 if (4 <= month && month <= 6) { quarter = "Q2"; longQuarter = "2nd quarter"; } in _getDisplayString() 123 else if (7 <= month && month <= 9) { quarter = "Q3"; longQuarter = "3rd quarter"; } in _getDisplayString() 124 else if (10 <= month && month <= 12) {quarter = "Q4"; longQuarter = "4th quarter"; } in _getDisplayString()
|
| /trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ |
| H A D | Formula.java | 221 int month = Integer.parseInt(s.substring(5,7)); in toExcelSerialDate() local 224 long serialDate = (1461 * (year + 4800 + (month - 14) / 12)) / 4 + in toExcelSerialDate() 225 (367 * (month - 2 - 12 * ((month - 14) / 12))) / 12 - in toExcelSerialDate() 226 (3 * ((year + 4900 + (month - 14) / 12)) / 100) / 4 + in toExcelSerialDate()
|
| /trunk/main/solenv/bin/modules/installer/ |
| H A D | logger.pm | 644 my $month = $timearray[4] + 1; 648 if ( $month < 10 ) { $month = "0" . $month; } 651 $datestring = $year . $month . $day;
|
| H A D | download.pm | 541 my $month = $timearray[4] + 1; 544 if ( $month < 10 ) { $month = "0" . $month; } 547 $datestring = $year . $month . $day;
|
| /trunk/main/ucb/source/ucp/ftp/ |
| H A D | ftpdirp.hxx | 53 const sal_uInt16& month, in DateTime() 60 month, in DateTime() 64 void SetMonth(sal_uInt16 month) { Month = month; } in SetMonth()
|
| /trunk/main/offapi/com/sun/star/util/ |
| H A D | DateTimeRange.idl | 57 /** contains the start day of month (1-31 or 0 for a void date) for the range. 62 /** contains the start month of year (1-12 or 0 for a void date) for the range. 92 /** contains the end day of month (1-31 or 0 for a void date) for the range. 97 /** contains the end month of year (1-12 or 0 for a void date) for the range.
|
| H A D | Date.idl | 37 /** contains the day of month (1-31 or 0 for a void date). 43 /** contains the month of year (1-12 or 0 for a void date).
|
| H A D | DateTime.idl | 61 /** is the day of month (1-31 or 0 for a void date). 67 /** is the month of year (1-12 or 0 for a void date).
|
| /trunk/main/offapi/com/sun/star/i18n/ |
| H A D | CalendarDisplayCode.idl | 46 /// Day of month, one or two digits, no leading zero. 48 /// Day of month, two digits, with leading zero. 59 /// Full month name. 61 /// Abbreviated month name.
|
| H A D | CalendarFieldIndex.idl | 55 /// Get/Set day of month [1-31]. 76 /// Get week of month. 82 /** Get/Set month [0-...].
|
| /trunk/main/sc/addin/datefunc/ |
| H A D | dfa.cl | 75 * Array holding values for month length, used in DaysInMonth() function 100 * Get the number of days in a specified month 160 * @param *pDay pointer to a variable for the day of the month 161 * @param *pMonth pointer to a variable for the month 258 * mode 0 is the interval between the dates in month, that is days / 7 293 * Get month difference between 2 dates 303 * mode 0 is the interval between the dates in month 305 * mode 1 is the difference in calendar month 401 * Get the Number of Days in the month for a date
|
| /trunk/main/solenv/bin/modules/installer/windows/ |
| H A D | admin.pm | 512 my $month = (localtime())[4]; 515 $month++; # zero based month 521 if ( $month < 10 ) { $month = "0" . $month; } 523 … my $timestring = $year . "/" . $month . "/" . $day . " " . $hour . ":" . $minute . ":" . $second;
|
| /trunk/main/setup_native/scripts/ |
| H A D | admin.pl | 1207 my $month = (localtime())[4]; 1209 $month++; 1215 if ( $month < 10 ) { $month = "0" . $month; } 1217 … my $timestring = $year . "/" . $month . "/" . $day . " " . $hour . ":" . $minute . ":" . $second;
|
| /trunk/main/i18npool/inc/ |
| H A D | calendar_hijri.hxx | 72 void getHijri(sal_Int32 *day, sal_Int32 *month, sal_Int32 *year); 73 void ToGregorian(sal_Int32 *day, sal_Int32 *month, sal_Int32 *year); 75 double getJulianDay(sal_Int32 day, sal_Int32 month, sal_Int32 year);
|
| /trunk/main/autodoc/source/cosv/service/ |
| H A D | comfunc.cxx | 86 date2str(String & out_Str, int day, int month, int year) in date2str() argument 91 buf[3] = static_cast<char>(month/10 + '0'); in date2str() 92 buf[4] = static_cast<char>(month%10 + '0'); in date2str()
|
| /trunk/main/unixODBC/inc/ |
| H A D | sqltypes.h | 250 SQLUSMALLINT month; member 276 SQLUSMALLINT month; member 318 SQLUINTEGER month; member
|
| /trunk/main/oox/source/dump/ |
| H A D | xlsbdumper.ini | 351 …ntains-blanks,contains-errors,not-contains-errors,,,today,tomorrow,yesterday,last-7-days,last-month 352 …20=next-month,this-week,next-week,last-week,this-month,above-average,below-average,duplicate-value… 358 …today,yesterday,last-7-days,this-week,last-week,last-month,tomorrow,next-week,next-month,this-month 925 …ay,date-next-week,date-this-week,date-last-week,date-next-month,date-this-month,date-last-month,da…
|
| /trunk/main/offapi/com/sun/star/sheet/ |
| H A D | DataPilotFieldGroupBy.idl | 96 by their month. 99 date in the month january, regardless of the year, day, or time of the 122 date in the year 1999, regardless of the month, day, or time of the
|
| H A D | FillDateMode.idl | 54 /** for every new value one month is added (day keeps unchanged). 60 /** for every new value one year is added (day and month keep unchanged).
|
| /trunk/main/sal/qa/helper/gcov/ |
| H A D | gcov_result.pl | 168 my $month = create2DigitNumber(localtime->mon() + 1); 170 $sURL = $sURL . "$next" . "date=$year-$month-$day";
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/stats/ |
| H A D | FatDataBaseOutProducer.java | 58 String month = dfmt.format(cal.get(GregorianCalendar.MONTH) + 1); in FatDataBaseOutProducer() local 60 String dateString = year + "-" + month + "-" + day; in FatDataBaseOutProducer()
|
| H A D | ComplexDataBaseOutProducer.java | 77 String month = dfmt.format(cal.get(GregorianCalendar.MONTH) + 1); in ComplexDataBaseOutProducer() local 79 String dateString = year + "-" + month + "-" + day; in ComplexDataBaseOutProducer()
|