Lines Matching refs:_sSQLString
302 util::Date toDate(const ::rtl::OString& _sSQLString) in toDate() argument
307 nYear = (sal_uInt16)_sSQLString.copy(0,4).toInt32(); in toDate()
308 nMonth = (sal_uInt16)_sSQLString.copy(4,2).toInt32(); in toDate()
309 nDay = (sal_uInt16)_sSQLString.copy(6,2).toInt32(); in toDate()
314 util::Time toTime(const ::rtl::OString& _sSQLString) in toTime() argument
319 nHour = (sal_uInt16)_sSQLString.copy(8,2).toInt32(); in toTime()
320 nMinute = (sal_uInt16)_sSQLString.copy(10,2).toInt32(); in toTime()
321 nSecond = (sal_uInt16)_sSQLString.copy(12,2).toInt32(); in toTime()
326 util::DateTime toDateTime(const ::rtl::OString& _sSQLString) in toDateTime() argument
328 util::Date aDate = toDate(_sSQLString); in toDateTime()
329 util::Time aTime = toTime(_sSQLString); in toDateTime()