Home
last modified time | relevance | path

Searched refs:dateTime (Results 1 – 14 of 14) sorted by relevance

/trunk/main/ucb/source/ucp/webdav/
H A DDateTimeHelper.cxx38 DateTime& dateTime) in ISO8601_To_DateTime() argument
100 dateTime.Year = aDateTime.Year; in ISO8601_To_DateTime()
101 dateTime.Month = aDateTime.Month; in ISO8601_To_DateTime()
102 dateTime.Day = aDateTime.Day; in ISO8601_To_DateTime()
103 dateTime.Hours = aDateTime.Hours; in ISO8601_To_DateTime()
104 dateTime.Minutes = aDateTime.Minutes; in ISO8601_To_DateTime()
105 dateTime.Seconds = aDateTime.Seconds; in ISO8601_To_DateTime()
168 DateTime& dateTime) in RFC2068_To_DateTime() argument
242 dateTime.Day = aDateTime.Day; in RFC2068_To_DateTime()
259 if (ISO8601_To_DateTime (s, dateTime)) in convert()
[all …]
/trunk/main/xmlsecurity/source/xmlsec/nss/
H A Dx509certificate_nssimpl.cxx119 DateTime dateTime ; in getNotValidBefore() local
130 dateTime.Seconds = static_cast< sal_Int16 >( explTime.tm_sec ); in getNotValidBefore()
132 dateTime.Hours = static_cast< sal_Int16 >( explTime.tm_hour ); in getNotValidBefore()
133 dateTime.Day = static_cast< sal_Int16 >( explTime.tm_mday ); in getNotValidBefore()
135 dateTime.Year = static_cast< sal_Int16 >( explTime.tm_year ); in getNotValidBefore()
137 return dateTime ; in getNotValidBefore()
148 DateTime dateTime ; in getNotValidAfter() local
161 dateTime.Hours = static_cast< sal_Int16 >( explTime.tm_hour ); in getNotValidAfter()
162 dateTime.Day = static_cast< sal_Int16 >( explTime.tm_mday ); in getNotValidAfter()
164 dateTime.Year = static_cast< sal_Int16 >( explTime.tm_year ); in getNotValidAfter()
[all …]
/trunk/main/xmlsecurity/source/xmlsec/mscrypt/
H A Dx509certificate_mscryptimpl.cxx310 DateTime dateTime ; in getNotValidBefore() local
320 dateTime.Hours = explTime.wHour ; in getNotValidBefore()
321 dateTime.Day = explTime.wDay ; in getNotValidBefore()
322 dateTime.Month = explTime.wMonth ; in getNotValidBefore()
323 dateTime.Year = explTime.wYear ; in getNotValidBefore()
327 return dateTime ; in getNotValidBefore()
336 DateTime dateTime ; in getNotValidAfter() local
346 dateTime.Hours = explTime.wHour ; in getNotValidAfter()
347 dateTime.Day = explTime.wDay ; in getNotValidAfter()
349 dateTime.Year = explTime.wYear ; in getNotValidAfter()
[all …]
/trunk/main/oox/source/helper/
H A Ddatetimehelper.cxx36 bool parseISO8601DateTime( OUString &aValue, DateTime &dateTime ) in parseISO8601DateTime() argument
42 dateTime.Year = static_cast< sal_uInt16 >( aValue.copy( 0, 4 ).toInt32() ); in parseISO8601DateTime()
43 dateTime.Month = static_cast< sal_uInt16 >( aValue.copy( 5, 2 ).toInt32() ); in parseISO8601DateTime()
44 dateTime.Day = static_cast< sal_uInt16 >( aValue.copy( 8, 2 ).toInt32() ); in parseISO8601DateTime()
45 dateTime.Hours = static_cast< sal_uInt16 >( aValue.copy( 11, 2 ).toInt32() ); in parseISO8601DateTime()
46 dateTime.Minutes = static_cast< sal_uInt16 >( aValue.copy( 14, 2 ).toInt32() ); in parseISO8601DateTime()
48 dateTime.Seconds = static_cast< sal_uInt16 >( floor( seconds ) ); in parseISO8601DateTime()
49dateTime.HundredthSeconds = static_cast< sal_uInt16 >( ::rtl::math::round ( 100 * ( seconds - floo… in parseISO8601DateTime()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DORowSetValue.java555 DateTime dateTime = (DateTime)value; in getDate() local
556 aValue.Day = dateTime.Day; in getDate()
557 aValue.Month = dateTime.Month; in getDate()
558 aValue.Year = dateTime.Year; in getDate()
619 aValue.Year = dateTime.Year; in getDateTime()
620 aValue.Month = dateTime.Month; in getDateTime()
621 aValue.Day = dateTime.Day; in getDateTime()
622 aValue.Hours = dateTime.Hours; in getDateTime()
1291 DateTime dateTime = (DateTime)value; in makeAny() local
1292 …DateTime dateTimeOut = new DateTime(dateTime.HundredthSeconds, dateTime.Seconds, dateTime.Minutes,… in makeAny()
[all …]
H A DDBTypeConversion.java438 public static String toDateTimeString(DateTime dateTime) { in toDateTimeString() argument
440 toUnsignedInt(dateTime.Year), in toDateTimeString()
441 toUnsignedInt(dateTime.Month), in toDateTimeString()
442 toUnsignedInt(dateTime.Day), in toDateTimeString()
443 toUnsignedInt(dateTime.Hours), in toDateTimeString()
444 toUnsignedInt(dateTime.Minutes), in toDateTimeString()
445 toUnsignedInt(dateTime.Seconds), in toDateTimeString()
446 toUnsignedInt(dateTime.HundredthSeconds)); in toDateTimeString()
/trunk/main/icc/
H A DSampleICC-1.3.2.patch3008 if (dateTime.year<1992) {
3017 if (dateTime.year>(year+1)) {
3026 if (dateTime.year>year) {
3035 if (dateTime.month<1 || dateTime.month>12) {
3044 if (dateTime.day<1 || dateTime.day>31) {
3052 if (dateTime.month==2) {
3053 if (dateTime.day>29) {
3061 if (dateTime.day==29) {
3071 if (dateTime.hours>23) {
3080 if (dateTime.minutes>59) {
[all …]
/trunk/main/offapi/com/sun/star/xsd/
H A DDateTime.idl38 /** specifies an <a href="http://www.w3.org/TR/xmlschema-2/#dateTime">XSD compliant dateTime type</…
/trunk/main/oox/source/xls/
H A Dsheetdatacontext.cxx220 DateTime dateTime; in onEndElement() local
221 if ( parseISO8601DateTime( maCellValue, dateTime ) ) in onEndElement()
222 mrSheetData.setDateTimeCell( maCellData, dateTime ); in onEndElement()
/trunk/main/oox/inc/oox/helper/
H A Ddatetimehelper.hxx30 bool parseISO8601DateTime( ::rtl::OUString &aValue, ::com::sun::star::util::DateTime &dateTime );
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A Dutils.java1007 String dateTime = dfmt.format(cal.get(Calendar.DAY_OF_MONTH)) + "." + in getDateTime() local
1014 return "[" + dateTime + "]"; in getDateTime()
/trunk/ext_libraries/ratscan/scan/
H A Drat-output-to-html.xsl26 <xsl:variable name="now" select="current-dateTime()"/>
/trunk/main/offapi/com/sun/star/rdf/
H A DURIs.idl90 /// http://www.w3.org/2001/XMLSchema-datatypes#dateTime
/trunk/main/oox/source/token/
H A Dtokens.txt1612 dateTime

Completed in 77 milliseconds