Lines Matching refs:aTempTime
2652 Time aTempTime = aTime; in ImplTimeReformat() local
2653 if ( aTempTime > GetMax() ) in ImplTimeReformat()
2654 aTempTime = GetMax() ; in ImplTimeReformat()
2655 else if ( aTempTime < GetMin() ) in ImplTimeReformat()
2656 aTempTime = GetMin(); in ImplTimeReformat()
2658 if ( GetErrorHdl().IsSet() && (aTime != aTempTime) ) in ImplTimeReformat()
2660 maCorrectedTime = aTempTime; in ImplTimeReformat()
2679 sal_uLong n = aTempTime.GetHour() * 3600L; in ImplTimeReformat()
2680 n += aTempTime.GetMin() * 60L; in ImplTimeReformat()
2681 n += aTempTime.GetSec(); in ImplTimeReformat()
2684 if ( aTempTime.Get100Sec() < 10 ) in ImplTimeReformat()
2686 rOutStr += String::CreateFromInt32( aTempTime.Get100Sec() ); in ImplTimeReformat()
2689 rOutStr = ImplGetLocaleDataWrapper().getDuration( aTempTime, bSecond, b100Sec ); in ImplTimeReformat()
2692 rOutStr = ImplGetLocaleDataWrapper().getTime( aTempTime, bSecond, b100Sec ); in ImplTimeReformat()
2695 if ( aTempTime.GetHour() > 12 ) in ImplTimeReformat()
2697 Time aT( aTempTime ); in ImplTimeReformat()
2702 if ( aTempTime.GetHour() < 12 ) in ImplTimeReformat()