Home
last modified time | relevance | path

Searched refs:rDT (Results 1 – 18 of 18) sorted by relevance

/trunk/main/sw/source/core/unocore/
H A Dunoredline.cxx208 static util::DateTime lcl_DateTimeToUno(const DateTime& rDT) in lcl_DateTimeToUno() argument
211 aRetDT.Year = rDT.GetYear(); in lcl_DateTimeToUno()
212 aRetDT.Month= rDT.GetMonth(); in lcl_DateTimeToUno()
213 aRetDT.Day = rDT.GetDay(); in lcl_DateTimeToUno()
214 aRetDT.Hours = rDT.GetHour(); in lcl_DateTimeToUno()
215 aRetDT.Minutes = rDT.GetMin(); in lcl_DateTimeToUno()
216 aRetDT.Seconds = rDT.GetSec(); in lcl_DateTimeToUno()
217 aRetDT.HundredthSeconds = rDT.Get100Sec(); in lcl_DateTimeToUno()
/trunk/main/svl/inc/svl/
H A Ddateitem.hxx47 const DateTime& rDT );
68 void SetDateTime( const DateTime& rDT ) { in SetDateTime() argument
71 aDateTime = rDT; } in SetDateTime()
86 const DateTime& rDT );
/trunk/main/sfx2/source/doc/
H A Dobjuno.cxx144 bool IsValidDateTime( const util::DateTime& rDT ) in IsValidDateTime() argument
146 if ( !rDT.Month || (rDT.Month > 12) ) in IsValidDateTime()
148 if ( !rDT.Day || (rDT.Day > DaysInMonth( rDT.Month, rDT.Year )) ) in IsValidDateTime()
150 else if ( rDT.Year <= 1582 ) in IsValidDateTime()
152 if ( rDT.Year < 1582 ) in IsValidDateTime()
154 else if ( rDT.Month < 10 ) in IsValidDateTime()
156 else if ( (rDT.Month == 10) && (rDT.Day < 15) ) in IsValidDateTime()
/trunk/main/sw/source/filter/ww8/
H A Dwriterwordglue.cxx748 long DateTime2DTTM( const DateTime& rDT ) in DateTime2DTTM() argument
765 if ( rDT.GetDate() == 0L ) in DateTime2DTTM()
767 long nDT = ( rDT.GetDayOfWeek() + 1 ) % 7; in DateTime2DTTM()
769 nDT += ( rDT.GetYear() - 1900 ) & 0x1ff; in DateTime2DTTM()
771 nDT += rDT.GetMonth() & 0xf; in DateTime2DTTM()
773 nDT += rDT.GetDay() & 0x1f; in DateTime2DTTM()
775 nDT += rDT.GetHour() & 0x1f; in DateTime2DTTM()
777 nDT += rDT.GetMin() & 0x3f; in DateTime2DTTM()
H A Drtfexport.cxx966 void RtfExport::OutDateTime(const sal_Char* pStr, const util::DateTime& rDT ) in OutDateTime() argument
969 OutULong( rDT.Year ) << OOO_STRING_SVTOOLS_RTF_MO; in OutDateTime()
970 OutULong( rDT.Month ) << OOO_STRING_SVTOOLS_RTF_DY; in OutDateTime()
971 OutULong( rDT.Day ) << OOO_STRING_SVTOOLS_RTF_HR; in OutDateTime()
972 OutULong( rDT.Hours ) << OOO_STRING_SVTOOLS_RTF_MIN; in OutDateTime()
973 OutULong( rDT.Minutes ) << '}'; in OutDateTime()
H A Drtfexport.hxx171 void OutDateTime(const sal_Char* pStr, const util::DateTime& rDT );
H A Dwrtww8.hxx1097 static long GetDTTM( const DateTime& rDT );
/trunk/main/autodoc/source/display/idl/
H A Dhfi_globalindex.cxx207 Xml::Element & rDT = CurOut() >> *new Html::DefListTerm; in produce_Line() local
219 write_EntryItself(rDT,rCe,i_typeLinkWriter); in produce_Line()
221 write_OwnerOfEntry(rDT,rCe,i_typeLinkWriter); in produce_Line()
223 write_EntrySecondTime(rDT,rCe,i_typeLinkWriter); in produce_Line()
/trunk/main/svl/source/items/
H A Ddateitem.cxx63 SfxDateTimeItem::SfxDateTimeItem( sal_uInt16 which, const DateTime& rDT ) : in SfxDateTimeItem() argument
65 aDateTime( rDT ) in SfxDateTimeItem()
222 SfxColumnDateTimeItem::SfxColumnDateTimeItem( sal_uInt16 which, const DateTime& rDT ) : in SfxColumnDateTimeItem() argument
223 SfxDateTimeItem( which, rDT ) in SfxColumnDateTimeItem()
/trunk/main/sw/source/core/fields/
H A Dflddat.cxx160 void SwDateTimeField::SetDateTime(const DateTime& rDT) in SetDateTime() argument
162 SetValue(GetDateTime(GetDoc(), rDT)); in SetDateTime()
169 double SwDateTimeField::GetDateTime(SwDoc* pDoc, const DateTime& rDT) in GetDateTime() argument
174 double fResult = rDT - DateTime(*pNullDate); in GetDateTime()
/trunk/main/sc/inc/
H A Dchgtrack.hxx450 void SetDateTimeUTC( const DateTime& rDT ) in SetDateTimeUTC() argument
451 { aDateTime = rDT; } in SetDateTimeUTC()
1200 void SetFixDateTimeUTC( const DateTime& rDT ) in SetFixDateTimeUTC() argument
1201 { aFixDateTime = rDT; } in SetFixDateTimeUTC()
1203 void SetFixDateTimeLocal( const DateTime& rDT ) in SetFixDateTimeLocal() argument
1204 { aFixDateTime = rDT; aFixDateTime.ConvertToUTC(); } in SetFixDateTimeLocal()
/trunk/main/sw/inc/
H A Dredline.hxx104 SwRedlineData( RedlineType_t eT, sal_uInt16 nAut, const DateTime& rDT,
133 void SetTimeStamp( const DateTime& rDT ) { aStamp = rDT; } in SetTimeStamp() argument
H A Dflddat.hxx137 void SetDateTime(const DateTime& rDT);
138 static double GetDateTime(SwDoc* pDoc, const DateTime& rDT);
/trunk/main/sw/source/ui/utlui/
H A Duitool.cxx741 String GetAppLangDateTimeString( const DateTime& rDT ) in GetAppLangDateTimeString() argument
745 String sRet( rAppLclData.getDate( rDT )); in GetAppLangDateTimeString()
746 ( sRet += ' ' ) += rAppLclData.getTime( rDT, sal_False, sal_False ); in GetAppLangDateTimeString()
/trunk/main/sw/source/ui/misc/
H A Dredlndlg.cxx426 const DateTime &rDT = rRedln.GetTimeStamp(nStack); in GetRedlineText() local
427 rDateTime = rDT; in GetRedlineText()
429 sEntry += GetAppLangDateTimeString( rDT ); in GetRedlineText()
/trunk/main/sfx2/source/bastyp/
H A Dhelper.cxx67 void AppendDateTime_Impl( const util::DateTime rDT,
71 CONVERT_DATETIME( rDT, aDT );
/trunk/main/sw/source/filter/inc/
H A Dmsfilter.hxx112 long DateTime2DTTM( const DateTime& rDT );
/trunk/main/sw/source/core/doc/
H A Ddocredln.cxx3030 SwRedlineData::SwRedlineData(RedlineType_t eT, sal_uInt16 nAut, const DateTime& rDT, in SwRedlineData() argument
3032 : pNext(pNxt), pExtraData(pData), sComment(rCmnt), aStamp(rDT), in SwRedlineData()

Completed in 111 milliseconds