Lines Matching refs:aTime
358 UNOTime aTime; in lcl_toXSD_UNOTime() local
359 OSL_VERIFY( rAny >>= aTime ); in lcl_toXSD_UNOTime()
360 return lcl_toXSD_UNOTime_typed( aTime ); in lcl_toXSD_UNOTime()
368 UNOTime aTime( 0, 0, 0, 0 ); in lcl_toUNOTime() local
389 aTime.HundredthSeconds = (sal_uInt16)nFractional; in lcl_toUNOTime()
391 aTime.HundredthSeconds *= 10; in lcl_toUNOTime()
414 aTime.Hours = (sal_uInt16)nTokenValue; in lcl_toUNOTime()
416 aTime.Minutes = (sal_uInt16)nTokenValue; in lcl_toUNOTime()
418 aTime.Seconds = (sal_uInt16)nTokenValue; in lcl_toUNOTime()
430 if ( ( aTime.Hours > 24 ) in lcl_toUNOTime()
431 || ( aTime.Minutes > 59 ) in lcl_toUNOTime()
432 || ( aTime.Seconds > 60 ) in lcl_toUNOTime()
437 && ( aTime.Hours == 24 ) in lcl_toUNOTime()
438 && ( ( aTime.Minutes != 0 ) in lcl_toUNOTime()
439 || ( aTime.Seconds != 0 ) in lcl_toUNOTime()
440 || ( aTime.HundredthSeconds != 0 ) in lcl_toUNOTime()
449 return aTime; in lcl_toUNOTime()
467 …UNOTime aTime( aDateTime.HundredthSeconds, aDateTime.Seconds, aDateTime.Minutes, aDateTime.Hours ); in lcl_toXSD_UNODateTime() local
468 ::rtl::OUString sTime = lcl_toXSD_UNOTime_typed( aTime ); in lcl_toXSD_UNODateTime()
486 UNOTime aTime; in lcl_toAny_UNODateTime() local
490 aTime = UNOTime( 0, 0, 0, 0 ); in lcl_toAny_UNODateTime()
495 aTime = lcl_toUNOTime( rString.copy( nDateTimeSep + 1 ) ); in lcl_toAny_UNODateTime()
498 aTime.HundredthSeconds, aTime.Seconds, aTime.Minutes, aTime.Hours, in lcl_toAny_UNODateTime()