Home
last modified time | relevance | path

Searched refs:date (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDBTypeConversion.java173 nTempDays -= (date.Year-1) * 365; in implBuildFromRelative()
174 nTempDays -= ((date.Year-1) / 4) - ((date.Year-1) / 100) + ((date.Year-1) / 400); in implBuildFromRelative()
195 date.Month = 1; in implBuildFromRelative()
196 while ( nTempDays > implDaysInMonth( date.Month, date.Year ) ) in implBuildFromRelative()
198 nTempDays -= implDaysInMonth( date.Month, date.Year ); in implBuildFromRelative()
199 date.Month++; in implBuildFromRelative()
201 date.Day = (short)nTempDays; in implBuildFromRelative()
422 public static String toDateString(Date date) { in toDateString() argument
424 toUnsignedInt(date.Year), in toDateString()
425 toUnsignedInt(date.Month), in toDateString()
[all …]
H A DORowSetValue.java549 Date date = (Date)value; in getDate() local
550 aValue.Day = date.Day; in getDate()
551 aValue.Month = date.Month; in getDate()
552 aValue.Year = date.Year; in getDate()
606 aValue.Day = date.Day; in getDateTime()
608 aValue.Year = date.Year; in getDateTime()
1185 public void setDate(Date date) { in setDate() argument
1187 this.value = new Date(date.Day, date.Month, date.Year); in setDate()
1274 Date date = (Date)value; in makeAny() local
1276 dateOut.Day = date.Day; in makeAny()
[all …]
/aoo42x/main/oox/source/dump/
H A Dxlsbdumper.ini689 0x04=date-group
696 0x0002=has-non-date
697 0x0004=has-date
724 0x0020=date
924 …han,value-less-equal,value-between,value-not-between,date-equal,date-older-than,date-newer-than,da…
925 …30=date-tomorrow,date-today,date-yesterday,date-next-week,date-this-week,date-last-week,date-next-…
926 …40=date-this-quarter,date-last-quarter,date-next-year,date-this-year,date-last-year,year-to-date,d…
927 50=date-jan,date-feb,date-mar,date-apr,date-may,date-jun,date-jul,date-aug,date-sep,date-oct
928 60=date-nov,date-dec,date-not-equal,date-older-equal,date-newer-equal,date-not-between
1147 0x00000001=date-1904
[all …]
/aoo42x/main/offapi/com/sun/star/awt/
H A DXDateField.idl37 /** gives access to the value and settings of a date field.
43 /** sets the date value which is displayed in the date field.
45 <p>The date value must be specified in the format
52 /** returns the date value which is currently displayed in the date field.
58 /** sets the minimum date value that can be entered by the user.
64 /** returns the currently set minimum date value that can be entered by
71 /** sets the maximum date value that can be entered by the user.
108 /** determines if the long date format is to be used.
114 /** determines if the long date format is currently used.
120 /** sets an empty value for the date.
[all …]
H A DUnoControlDateFieldModel.idl85 /** specifies the date displayed in the control.
87 <p>The date must be specified in the format YYYYMMDD.</p>
93 /** specifies the format of the displayed date.
114 /** specifies the maximum date that can be entered.
120 /** specifies the minimum date that can be entered.
126 /** specifies, if the date century is displayed.
226 /** specifies that the date is checked during the user input.
/aoo42x/main/wizards/com/sun/star/wizards/common/
H A DHelper.java333 calendar.set(date.Year, date.Month - 1, date.Day); in DateUtils()
363 public synchronized double getDocumentDateAsDouble(int date) in getDocumentDateAsDouble() argument
366 calendar.set(date / 10000, in getDocumentDateAsDouble()
367 (date % 10000) / 100 - 1, in getDocumentDateAsDouble()
368 date % 100); in getDocumentDateAsDouble()
378 public double getDocumentDateAsDouble(DateTime date) in getDocumentDateAsDouble() argument
380 return getDocumentDateAsDouble(date.Year * 10000 + date.Month * 100 + date.Day); in getDocumentDateAsDouble()
398 public String format(int formatIndex, int date) in format() argument
400 return formatter.convertNumberToString(formatIndex, getDocumentDateAsDouble(date)); in format()
403 public String format(int formatIndex, DateTime date) in format() argument
[all …]
/aoo42x/main/offapi/com/sun/star/sheet/
H A DDataPilotFieldGroupBy.idl34 field by date or time.
41 /** Groups all members of a DataPilot field containing a date/time value
45 contain a time with a seconds value of 2, regardless of the date,
52 /** Groups all members of a DataPilot field containing a date/time value
56 contain a time with a minutes value of 2, regardless of the date,
63 /** Groups all members of a DataPilot field containing a date/time value
74 /** Groups all members of a DataPilot field containing a date/time value
85 will contain all members with a date/time in the range from
95 /** Groups all members of a DataPilot field containing a date/time value
110 date in the first quarter of a year (i.e. the months january,
[all …]
/aoo42x/main/sc/addin/datefunc/
H A Ddfa.cl61 * this internal date representation.
125 * is the number of days between 01/01/0001 and the date
254 * @param d1 - date value (in StarCalc representation based 12/30/1899), usually the older date
255 * @param d2 - date value (in StarCalc representation based 12/30/1899), usually the younger date
299 * @param d1 - date value, start date
300 * @param d2 - date value, end date
346 * @param d1 - date value, start date
347 * @param d2 - date value, end date
401 * Get the Number of Days in the month for a date
423 * Get number of weeks in the year for a date
[all …]
H A Ddfa.src60 Text = "Internal number of the date";
74 Text = "The end date for calculating the difference in weeks";
78 Text = "The start date for calculating the difference weeks";
97 Text = "The end date for calculating the difference in months";
101 Text = "The start date for calculating the difference in months";
120 Text = "The end date for calculating the difference in years";
124 Text = "The start date for calculating the difference in years";
150 Text = "Returns the number of days in the month in relation to the date entered";
161 Text = "Returns the number of days in a year in relation to the date entered";
172 Text = "Returns the number of weeks in the year in relation to a date";
/aoo42x/main/icc/source/create_sRGB_profile/
H A Dcreate_sRGB_profile.cpp229 pHdr->date.month, pHdr->date.day, pHdr->date.year, in dumpProfile()
230 pHdr->date.hours, pHdr->date.minutes, pHdr->date.seconds); in dumpProfile()
277 profile.m_Header.date.year = data_last_changed_year; in main()
278 profile.m_Header.date.month = data_last_changed_month; in main()
279 profile.m_Header.date.day = data_last_day; in main()
280 profile.m_Header.date.hours = data_last_changed_hour; in main()
281 profile.m_Header.date.minutes = data_last_changed_minute; in main()
282 profile.m_Header.date.seconds = 0; in main()
/aoo42x/main/l10ntools/java/receditor/java/transex3/model/
H A DSdfEntity.java39 private String date; field in SdfEntity
58 …2, String langid, String text, String helptext, String quickhelptext, String title , String date) { in SdfEntity() argument
74 this.date = date; in SdfEntity()
107 +text+"\t"+helptext+"\t"+quickhelptext+"\t"+title+"\t"+date; in toString()
225 return date; in getDate()
227 public void setDate(String date) { in setDate() argument
228 this.date = date; in setDate()
/aoo42x/main/helpcontent2/helpers/
H A Dcreatemakefile.pl131 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
183 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
212 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
241 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
268 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
304 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
334 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
361 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
388 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
411 $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec;
/aoo42x/main/scaddins/
H A DAllLangResTarget_date.mk24 $(eval $(call gb_AllLangResTarget_AllLangResTarget,date))
26 $(eval $(call gb_AllLangResTarget_set_reslocation,date,scaddins))
28 $(eval $(call gb_AllLangResTarget_add_srs,date,\
29 date/res \
32 $(eval $(call gb_SrsTarget_SrsTarget,date/res))
34 $(eval $(call gb_SrsTarget_set_include,date/res,\
40 $(eval $(call gb_SrsTarget_add_files,date/res,\
H A DLibrary_date.mk24 $(eval $(call gb_Library_Library,date))
26 $(eval $(call gb_Library_set_componentfile,date,scaddins/source/datefunc/date))
28 $(eval $(call gb_Library_set_private_api,date,$(OUTDIR)/bin/types.rdb,\
50 $(eval $(call gb_Library_add_linked_libs,date,\
59 $(eval $(call gb_Library_add_exception_objects,date,\
/aoo42x/main/l10ntools/java/jpropex/java/
H A DSdfEntity.java40 private String date = new String(""); field in SdfEntity
76 …2, String langid, String text, String helptext, String quickhelptext, String title , String date) { in SdfEntity() argument
92 this.date = date; in SdfEntity()
126 … ).append( quickhelptext ).append( "\t" ).append( title ).append( "\t" ).append( date ).toString(); in toString()
244 return date; in getDate()
246 public void setDate(String date) { in setDate() argument
247 this.date = date; in setDate()
/aoo42x/main/scaddins/source/datefunc/
H A Ddatefunc.src38 Text [ en-US ] = "Start date";
46 Text [ en-US ] = "End date";
70 Text [ en-US ] = "Start date";
78 Text [ en-US ] = "End date";
102 Text [ en-US ] = "Start date";
110 Text [ en-US ] = "End date";
130 Text [ en-US ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
146 Text [ en-US ] = "Returns the number of days of the month in which the date entered occurs";
162 Text [ en-US ] = "Returns the number of days of the year in which the date entered occurs.";
178 Text [ en-US ] = "Returns the number of weeks of the year in which the date entered occurs";
H A Dmakefile.mk25 TARGET=date
100 $(SRS)$/date.srs
102 RESLIB1NAME=date
117 ALLTAR : $(MISC)/date.component
119 $(MISC)/date.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \
120 date.component
123 $(SOLARENV)/bin/createcomponent.xslt date.component
/aoo42x/main/scaddins/source/analysis/
H A Danalysis.src39 Text [ en-US ] = "Start date";
77 Text [ en-US ] = "Start date";
87 Text [ en-US ] = "End date";
92 Text [ en-US ] = "The end date";
115 Text [ en-US ] = "Start date";
148 Text [ en-US ] = "The date";
171 Text [ en-US ] = "Start date";
199 Text [ en-US ] = "Start date";
209 Text [ en-US ] = "End date";
3397 Text [ en-US ] = "Returns the first coupon date after the settlement date";
[all …]
/aoo42x/main/l10ntools/scripts/tool/
H A Dsdf.py92 date = "" variable in SdfEntity
112 text="", helptext="", quickhelptext="", title="", date=""): argument
127 if date != "":
128 self.date = date;
130 self.date = strftime("%Y-%m-%d %H:%M:%S",gmtime())
150 self.date = splitted[ self.const._DATE_POS ]
161 …t", self.text, "\t", self.helptext, "\t", self.quickhelptext, "\t" , self.title, "\t", self.date ])
/aoo42x/main/offapi/com/sun/star/util/
H A DDateTimeRange.idl33 /** represents a range of date+time values.
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.
/aoo42x/main/offapi/com/sun/star/text/textfield/docinfo/
H A DCreateDateTime.idl35 /** specifies service of a text field that provides information about the date
50 /** If this flag is set to <FALSE/> the date or time
51 is always displayed as the current date or time.
57 a date with an optional time. If it is set to <FALSE/>
61 /** contains the date and time as double value.
H A DPrintDateTime.idl35 /** specifies service of a text field that provides information about the date
50 /** If this flag is set to <FALSE/> the date or time
51 is always displayed as the current date or time.
57 a date with an optional time. If it is set to <FALSE/>
61 /** contains the date and time as double value.
H A DChangeDateTime.idl35 /** specifies service of a text field that provides information about the date
50 /** If this flag is set to <FALSE/> the date or time
51 is always displayed as the current date or time.
57 a date with an optional time. If it is set to <FALSE/>
61 /** contains the date and time as double value.
/aoo42x/main/offapi/com/sun/star/i18n/
H A DLocaleDataItem.idl43 /// date separator, for example, <b>"/"</b> or <b>"."</b> or <b>"-"</b>
69 /// long date day of week separator, for example, <b>", "</b>
71 /// long date day separator, for example, <b>", "</b>
73 /// long date month separator, for example, <b>" "</b>
75 /// long date year separator, for example, <b>" "</b>
/aoo42x/main/offapi/com/sun/star/chart2/
H A DXAnyDescriptionAccess.idl37 This allows to set date values as categories.
54 The any might be strings for category text axis or doubles for date axis.
66 The any might be strings for category text axis or doubles for date axis.
78 The any might be strings for category text axis or doubles for date axis.
90 The any might be strings for category text axis or doubles for date axis.

Completed in 91 milliseconds

12345678910>>...12