Lines Matching refs:Date

56     ::com::sun::star::util::Date DBTypeConversion::getStandardDate()  in getStandardDate()
58 static ::com::sun::star::util::Date STANDARD_DB_DATE(1,1,1900); in getStandardDate()
62 ::rtl::OUString DBTypeConversion::toDateString(const Date& rDate) in toDateString()
91 Date aDate(_rDateTime.Day,_rDateTime.Month,_rDateTime.Year); in toDateTimeString()
101 Date DBTypeConversion::toDate(sal_Int32 _nVal) in toDate()
103 Date aReturn; in toDate()
123 sal_Int32 DBTypeConversion::toINT32(const Date& rVal) in toINT32()
210 static sal_Int32 implRelativeToAbsoluteNull(const Date& _rDate) in implRelativeToAbsoluteNull()
268 sal_Int32 DBTypeConversion::toDays(const Date& _rVal, const Date& _rNullDate) in toDays()
274 double DBTypeConversion::toDouble(const Date& rVal, const Date& _rNullDate) in toDouble()
286 double DBTypeConversion::toDouble(const DateTime& _rVal, const Date& _rNullDate) in toDouble()
288 sal_Int64 nTime = toDays(Date(_rVal.Day, _rVal.Month, _rVal.Year), _rNullDate); in toDouble()
299 static void addDays(sal_Int32 nDays, Date& _rDate) in addDays()
320 static void subDays( sal_Int32 nDays, Date& _rDate ) in subDays()
341 Date DBTypeConversion::toDate(double dVal, const Date& _rNullDate) in toDate()
343 Date aRet = _rNullDate; in toDate()
393 DateTime DBTypeConversion::toDateTime(double dVal, const Date& _rNullDate) in toDateTime()
395 Date aDate = toDate(dVal, _rNullDate); in toDateTime()
413 Date DBTypeConversion::toDate(const ::rtl::OUString& _sSQLString) in toDate()
430 return Date(nDay,nMonth,nYear); in toDate()
441 Date aDate = toDate(_sSQLString); in toDateTime()