Home
last modified time | relevance | path

Searched refs:dateTime (Results 1 – 13 of 13) 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
240 dateTime.Year = aDateTime.Year; in RFC2068_To_DateTime()
241 dateTime.Month = aDateTime.Month; in RFC2068_To_DateTime()
[all …]
/trunk/main/xmlsecurity/source/xmlsec/nss/
H A Dx509certificate_nssimpl.cxx119 DateTime dateTime ; in getNotValidBefore() local
129 dateTime.HundredthSeconds = static_cast< sal_Int16 >( explTime.tm_usec / 1000 ); in getNotValidBefore()
130 dateTime.Seconds = static_cast< sal_Int16 >( explTime.tm_sec ); in getNotValidBefore()
131 dateTime.Minutes = static_cast< sal_Int16 >( explTime.tm_min ); 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()
134 dateTime.Month = static_cast< sal_Int16 >( explTime.tm_month+1 ); 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
[all …]
/trunk/main/xmlsecurity/source/xmlsec/mscrypt/
H A Dx509certificate_mscryptimpl.cxx310 DateTime dateTime ; in getNotValidBefore() local
317 dateTime.HundredthSeconds = explTime.wMilliseconds / 100 ; in getNotValidBefore()
318 dateTime.Seconds = explTime.wSecond ; in getNotValidBefore()
319 dateTime.Minutes = explTime.wMinute ; in getNotValidBefore()
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
[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()
618 DateTime dateTime = (DateTime)value; in getDateTime() local
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()
623 aValue.Minutes = dateTime.Minutes; in getDateTime()
[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) {
3010 - sprintf(buf," - %u: Invalid year!\r\n",dateTime.year);
3011 + sprintf(buf," - %u: Invalid year!\n",dateTime.year);
3017 if (dateTime.year>(year+1)) {
3019 - sprintf(buf," - %u: Invalid year!\r\n",dateTime.year);
3020 + sprintf(buf," - %u: Invalid year!\n",dateTime.year);
3026 if (dateTime.year>year) {
3028 - sprintf(buf," - %u: Invalid year!\r\n",dateTime.year);
3029 + sprintf(buf," - %u: Invalid year!\n",dateTime.year);
3035 if (dateTime.month<1 || dateTime.month>12) {
[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.java1006 String dateTime = dfmt.format(cal.get(Calendar.DAY_OF_MONTH)) + "." + in getDateTime() local
1013 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