/aoo4110/main/svl/inc/svl/ |
H A D | dateitem.hxx | 47 const DateTime& rDT ); 68 void SetDateTime( const DateTime& rDT ) { in SetDateTime() argument 71 aDateTime = rDT; } in SetDateTime() 86 const DateTime& rDT );
|
/aoo4110/main/sw/source/core/unocore/ |
H A D | unoredline.cxx | 208 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()
|
/aoo4110/main/sfx2/source/doc/ |
H A D | objuno.cxx | 144 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()
|
/aoo4110/main/autodoc/source/display/idl/ |
H A D | hfi_globalindex.cxx | 207 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()
|
/aoo4110/main/sw/source/filter/ww8/ |
H A D | writerwordglue.cxx | 748 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 D | rtfexport.cxx | 966 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 D | rtfexport.hxx | 173 void OutDateTime(const sal_Char* pStr, const util::DateTime& rDT );
|
H A D | wrtww8.hxx | 1097 static long GetDTTM( const DateTime& rDT );
|
/aoo4110/main/svl/source/items/ |
H A D | dateitem.cxx | 63 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()
|
/aoo4110/main/sw/source/core/fields/ |
H A D | flddat.cxx | 160 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()
|
/aoo4110/main/sc/inc/ |
H A D | chgtrack.hxx | 450 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()
|
/aoo4110/main/sw/inc/ |
H A D | redline.hxx | 104 SwRedlineData( RedlineType_t eT, sal_uInt16 nAut, const DateTime& rDT, 133 void SetTimeStamp( const DateTime& rDT ) { aStamp = rDT; } in SetTimeStamp() argument
|
H A D | flddat.hxx | 137 void SetDateTime(const DateTime& rDT); 138 static double GetDateTime(SwDoc* pDoc, const DateTime& rDT);
|
/aoo4110/main/sw/source/ui/utlui/ |
H A D | uitool.cxx | 727 String GetAppLangDateTimeString( const DateTime& rDT ) in GetAppLangDateTimeString() argument 731 String sRet( rAppLclData.getDate( rDT )); in GetAppLangDateTimeString() 732 ( sRet += ' ' ) += rAppLclData.getTime( rDT, sal_False, sal_False ); in GetAppLangDateTimeString()
|
/aoo4110/main/sw/source/ui/misc/ |
H A D | redlndlg.cxx | 426 const DateTime &rDT = rRedln.GetTimeStamp(nStack); in GetRedlineText() local 427 rDateTime = rDT; in GetRedlineText() 429 sEntry += GetAppLangDateTimeString( rDT ); in GetRedlineText()
|
/aoo4110/main/sfx2/source/bastyp/ |
H A D | helper.cxx | 67 void AppendDateTime_Impl( const util::DateTime rDT, 71 CONVERT_DATETIME( rDT, aDT );
|
/aoo4110/main/sw/source/filter/inc/ |
H A D | msfilter.hxx | 112 long DateTime2DTTM( const DateTime& rDT );
|
/aoo4110/main/sw/source/core/doc/ |
H A D | docredln.cxx | 3030 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()
|