Home
last modified time | relevance | path

Searched refs:month (Results 1 – 25 of 136) sorted by relevance

123456

/trunk/main/i18npool/source/calendar/
H A Dcalendar_jewish.cxx124 if ((month == 2) in LastDayOfHebrewMonth()
125 || (month == 4) in LastDayOfHebrewMonth()
126 || (month == 6) in LastDayOfHebrewMonth()
129 || (month == 10) in LastDayOfHebrewMonth()
131 || (month == 13)) in LastDayOfHebrewMonth()
157 while (d > HebrewDate(month, (LastDayOfHebrewMonth(month,year)), year)) in HebrewDate()
158 month++; in HebrewDate()
173 while (m < month) {
201 switch (month) { in LastDayOfGregorianMonth()
231 month = 1; in GregorianDate()
[all …]
H A Dcalendar_hijri.cxx84 ToGregorian(&day, &month, &year); in mapToGregorian()
97 sal_Int32 month, day, year; in mapFromGregorian() local
106 getHijri(&day, &month, &year); in mapFromGregorian()
190 julday = getJulianDay(*day, *month, *year); in getHijri()
211 *month = (syndiff % 12) + 1; in getHijri()
218 if (syndiff != 0 && *month <= 0) { in getHijri()
219 *month += 12; in getHijri()
255 *month = -1; in ToGregorian()
317 if( month > 2 ) { in getJulianDay()
319 jm = month + 1; in getJulianDay()
[all …]
/trunk/main/ucb/source/ucp/webdav/
H A DDateTimeHelper.cxx139 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()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/i18n/
H A D_XExtendedCalendar.java92 int month = cal.get(Calendar.MONTH) + 1; in _getDisplayString() local
95 if (month > 3 && month < 7) { quarter = "Q2"; longQuarter = "2nd quarter"; } in _getDisplayString()
96 else if (month > 6 && month < 10) { quarter = "Q3"; longQuarter = "3rd quarter"; } in _getDisplayString()
97 else if (month > 10 && month < 13) {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 DFormula.java221 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 Dlogger.pm644 my $month = $timearray[4] + 1;
648 if ( $month < 10 ) { $month = "0" . $month; }
651 $datestring = $year . $month . $day;
H A Ddownload.pm541 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 Dftpdirp.hxx53 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 DDateTimeRange.idl57 /** 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 DDate.idl37 /** 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 DDateTime.idl61 /** 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 DCalendarDisplayCode.idl46 /// 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 DCalendarFieldIndex.idl55 /// Get/Set day of month [1-31].
76 /// Get week of month.
82 /** Get/Set month [0-...].
/trunk/main/sc/addin/datefunc/
H A Ddfa.cl75 * 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 Dadmin.pm514 my $month = (localtime())[4];
517 $month++; # zero based month
523 if ( $month < 10 ) { $month = "0" . $month; }
525 my $timestring = $year . "/" . $month . "/" . $day . " " . $hour . ":" . $minute . ":" . $second;
/trunk/main/setup_native/scripts/
H A Dadmin.pl1207 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 Dcalendar_hijri.hxx72 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 Dcomfunc.cxx86 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 Dsqltypes.h250 SQLUSMALLINT month; member
276 SQLUSMALLINT month; member
318 SQLUINTEGER month; member
/trunk/main/oox/source/dump/
H A Dxlsbdumper.ini351 …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 DDataPilotFieldGroupBy.idl96 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 DFillDateMode.idl54 /** 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 Dgcov_result.pl171 my $month = create2DigitNumber(localtime->mon() + 1);
173 $sURL = $sURL . "$next" . "date=$year-$month-$day";
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/stats/
H A DFatDataBaseOutProducer.java58 String month = dfmt.format(cal.get(GregorianCalendar.MONTH) + 1); in FatDataBaseOutProducer() local
60 String dateString = year + "-" + month + "-" + day; in FatDataBaseOutProducer()
H A DComplexDataBaseOutProducer.java77 String month = dfmt.format(cal.get(GregorianCalendar.MONTH) + 1); in ComplexDataBaseOutProducer() local
79 String dateString = year + "-" + month + "-" + day; in ComplexDataBaseOutProducer()

Completed in 107 milliseconds

123456