| /AOO42X/main/sal/osl/os2/ |
| H A D | time.c | 60 sal_Bool SAL_CALL osl_getDateTimeFromTimeValue( TimeValue* pTimeVal, oslDateTime* pDateTime ) in osl_getDateTimeFromTimeValue() argument 75 pDateTime->NanoSeconds = pTimeVal->Nanosec; in osl_getDateTimeFromTimeValue() 76 pDateTime->Seconds = pSystemTime->tm_sec; in osl_getDateTimeFromTimeValue() 77 pDateTime->Minutes = pSystemTime->tm_min; in osl_getDateTimeFromTimeValue() 78 pDateTime->Hours = pSystemTime->tm_hour; in osl_getDateTimeFromTimeValue() 79 pDateTime->Day = pSystemTime->tm_mday; in osl_getDateTimeFromTimeValue() 80 pDateTime->DayOfWeek = pSystemTime->tm_wday; in osl_getDateTimeFromTimeValue() 81 pDateTime->Month = pSystemTime->tm_mon + 1; in osl_getDateTimeFromTimeValue() 82 pDateTime->Year = pSystemTime->tm_year + 1900; in osl_getDateTimeFromTimeValue() 94 sal_Bool SAL_CALL osl_getTimeValueFromDateTime( oslDateTime* pDateTime, TimeValue* pTimeVal ) in osl_getTimeValueFromDateTime() argument [all …]
|
| /AOO42X/main/sal/osl/unx/ |
| H A D | time.c | 59 sal_Bool SAL_CALL osl_getDateTimeFromTimeValue( TimeValue* pTimeVal, oslDateTime* pDateTime ) in osl_getDateTimeFromTimeValue() argument 74 pDateTime->NanoSeconds = pTimeVal->Nanosec; in osl_getDateTimeFromTimeValue() 75 pDateTime->Seconds = pSystemTime->tm_sec; in osl_getDateTimeFromTimeValue() 76 pDateTime->Minutes = pSystemTime->tm_min; in osl_getDateTimeFromTimeValue() 77 pDateTime->Hours = pSystemTime->tm_hour; in osl_getDateTimeFromTimeValue() 78 pDateTime->Day = pSystemTime->tm_mday; in osl_getDateTimeFromTimeValue() 79 pDateTime->DayOfWeek = pSystemTime->tm_wday; in osl_getDateTimeFromTimeValue() 80 pDateTime->Month = pSystemTime->tm_mon + 1; in osl_getDateTimeFromTimeValue() 81 pDateTime->Year = pSystemTime->tm_year + 1900; in osl_getDateTimeFromTimeValue() 93 sal_Bool SAL_CALL osl_getTimeValueFromDateTime( oslDateTime* pDateTime, TimeValue* pTimeVal ) in osl_getTimeValueFromDateTime() argument [all …]
|
| /AOO42X/main/sal/osl/w32/ |
| H A D | time.c | 72 sal_Bool SAL_CALL osl_getDateTimeFromTimeValue( TimeValue* pTimeVal, oslDateTime* pDateTime ) in osl_getDateTimeFromTimeValue() argument 81 pDateTime->NanoSeconds = pTimeVal->Nanosec; in osl_getDateTimeFromTimeValue() 83 pDateTime->Seconds = aSystemTime.wSecond; in osl_getDateTimeFromTimeValue() 84 pDateTime->Minutes = aSystemTime.wMinute; in osl_getDateTimeFromTimeValue() 85 pDateTime->Hours = aSystemTime.wHour; in osl_getDateTimeFromTimeValue() 86 pDateTime->Day = aSystemTime.wDay; in osl_getDateTimeFromTimeValue() 87 pDateTime->DayOfWeek = aSystemTime.wDayOfWeek; in osl_getDateTimeFromTimeValue() 88 pDateTime->Month = aSystemTime.wMonth; in osl_getDateTimeFromTimeValue() 89 pDateTime->Year = aSystemTime.wYear; in osl_getDateTimeFromTimeValue() 102 sal_Bool SAL_CALL osl_getTimeValueFromDateTime( oslDateTime* pDateTime, TimeValue* pTimeVal ) in osl_getTimeValueFromDateTime() argument [all …]
|
| /AOO42X/main/sw/source/core/unocore/ |
| H A D | unofield.cxx | 1044 util::DateTime* pDateTime; member 1060 pDateTime(0), in SwFieldProperties_Impl() 1074 {delete pDateTime;} in ~SwFieldProperties_Impl() 1247 if (m_pProps->pDateTime) in attachToRange() 1249 aDateTime.SetYear(m_pProps->pDateTime->Year); in attachToRange() 1250 aDateTime.SetMonth(m_pProps->pDateTime->Month); in attachToRange() 1251 aDateTime.SetDay(m_pProps->pDateTime->Day); in attachToRange() 1252 aDateTime.SetHour(m_pProps->pDateTime->Hours); in attachToRange() 1253 aDateTime.SetMin(m_pProps->pDateTime->Minutes); in attachToRange() 1254 aDateTime.SetSec(m_pProps->pDateTime->Seconds); in attachToRange() [all …]
|
| H A D | swunohelper.cxx | 258 ::DateTime* pDateTime = new ::DateTime( in UCB_GetFileListOfFolder() 266 void* p = pDateTime; in UCB_GetFileListOfFolder()
|
| /AOO42X/main/svl/source/misc/ |
| H A D | lockfilecommon.cxx | 237 char pDateTime[20]; in GetCurrentLocalTime() local 238 …sprintf( pDateTime, "%02d.%02d.%4d %02d:%02d", aDateTime.Day, aDateTime.Month, aDateTime.Year, aDa… in GetCurrentLocalTime() 239 aTime = ::rtl::OUString::createFromAscii( pDateTime ); in GetCurrentLocalTime()
|
| /AOO42X/main/svx/source/dialog/ |
| H A D | ctredlin.cxx | 446 const DateTime *pDateTime,const String* pCommentStr) in IsValidEntry() argument 457 nTheFlag=pDateTime->IsBetween(aDaTiFilterFirst,aDaTiFilterLast); in IsValidEntry() 461 nTheFlag=!(pDateTime->IsBetween(aDaTiFilterFirst,aDaTiFilterLast)); in IsValidEntry() 474 sal_Bool SvxRedlinTable::IsValidEntry(const String* pAuthorStr,const DateTime *pDateTime) in IsValidEntry() argument 488 nTheFlag=pDateTime->IsBetween(aDaTiFilterFirst,aDaTiFilterLast); in IsValidEntry() 492 nTheFlag=!(pDateTime->IsBetween(aDaTiFilterFirst,aDaTiFilterLast)); in IsValidEntry()
|
| /AOO42X/main/connectivity/source/commontools/ |
| H A D | FValue.cxx | 1810 …::com::sun::star::util::DateTime* pDateTime = static_cast< ::com::sun::star::util::DateTime*>(m_aV… in getDate() 1811 aValue.Day = pDateTime->Day; in getDate() 1812 aValue.Month = pDateTime->Month; in getDate() 1813 aValue.Year = pDateTime->Year; in getDate() 1867 …::com::sun::star::util::DateTime* pDateTime = static_cast< ::com::sun::star::util::DateTime*>(m_aV… in getTime() 1868 aValue.HundredthSeconds = pDateTime->HundredthSeconds; in getTime() 1869 aValue.Seconds = pDateTime->Seconds; in getTime() 1870 aValue.Minutes = pDateTime->Minutes; in getTime() 1871 aValue.Hours = pDateTime->Hours; in getTime()
|
| /AOO42X/main/sal/inc/osl/ |
| H A D | time.h | 115 sal_Bool SAL_CALL osl_getDateTimeFromTimeValue( TimeValue* pTimeVal, oslDateTime* pDateTime ); 124 sal_Bool SAL_CALL osl_getTimeValueFromDateTime( oslDateTime* pDateTime, TimeValue* pTimeVal );
|
| /AOO42X/main/sc/source/filter/excel/ |
| H A D | xepivot.cxx | 183 else if( const DateTime* pDateTime = GetDateTime() ) in WriteBody() local 185 sal_uInt16 nYear = static_cast< sal_uInt16 >( pDateTime->GetYear() ); in WriteBody() 186 sal_uInt16 nMonth = static_cast< sal_uInt16 >( pDateTime->GetMonth() ); in WriteBody() 187 sal_uInt8 nDay = static_cast< sal_uInt8 >( pDateTime->GetDay() ); in WriteBody() 188 sal_uInt8 nHour = static_cast< sal_uInt8 >( pDateTime->GetHour() ); in WriteBody() 189 sal_uInt8 nMin = static_cast< sal_uInt8 >( pDateTime->GetMin() ); in WriteBody() 190 sal_uInt8 nSec = static_cast< sal_uInt8 >( pDateTime->GetSec() ); in WriteBody()
|
| H A D | xipivot.cxx | 110 else if( const DateTime* pDateTime = GetDateTime() ) in WriteToSource() local 113 double fValue = rRoot.GetDoubleFromDateTime( *pDateTime ); in WriteToSource()
|
| /AOO42X/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ |
| H A D | ORowSetValue.java | 1148 DateTime pDateTime = (DateTime)value; in getTime() local 1149 aValue.HundredthSeconds = pDateTime.HundredthSeconds; in getTime() 1150 aValue.Seconds = pDateTime.Seconds; in getTime() 1151 aValue.Minutes = pDateTime.Minutes; in getTime() 1152 aValue.Hours = pDateTime.Hours; in getTime()
|
| /AOO42X/main/svx/inc/svx/ |
| H A D | ctredlin.hxx | 147 …sal_Bool IsValidEntry(const String* pAuthor,const DateTime *pDateTime,const String* pCo… 148 sal_Bool IsValidEntry(const String* pAuthor,const DateTime *pDateTime);
|
| /AOO42X/main/sal/qa/osl/file/ |
| H A D | osl_File.cxx | 229 oslDateTime *pDateTime = ( oslDateTime* )malloc( sizeof( oslDateTime ) ) ; in printTime() local 230 ASSERT_TRUE(pDateTime != NULL) << "Error in printTime() function,malloc "; in printTime() 235 …ASSERT_TRUE(sal_True == osl_getDateTimeFromTimeValue( pLocalTV, pDateTime )) << "Error in printTim… in printTime() 238 printf( " Time is: %d/%d/%d ", pDateTime->Month, pDateTime->Day, pDateTime->Year); in printTime() 239 switch ( pDateTime->DayOfWeek ) in printTime() 249 …printf( " %d:%d:%d %d nsecs\n", pDateTime->Hours, pDateTime->Minutes, pDateTime->Seconds, pDateTim… in printTime() 251 free( pDateTime ); in printTime()
|