Lines Matching refs:aTime

2454     Time        aTime( 0, 0, 0 );  in ImplTimeGetValue()  local
2618 aTime = Time( (sal_uInt16)nHour, (sal_uInt16)nMinute, (sal_uInt16)nSecond, in ImplTimeGetValue()
2633 aTime = Time( (sal_uInt16)nHour, (sal_uInt16)nMinute, (sal_uInt16)nSecond, in ImplTimeGetValue()
2636 aTime = -aTime; in ImplTimeGetValue()
2639 rTime = aTime; in ImplTimeGetValue()
2648 Time aTime( 0, 0, 0 ); in ImplTimeReformat() local
2649 if ( !ImplTimeGetValue( rStr, aTime, GetFormat(), IsDuration(), ImplGetLocaleDataWrapper() ) ) in ImplTimeReformat()
2652 Time aTempTime = aTime; in ImplTimeReformat()
2658 if ( GetErrorHdl().IsSet() && (aTime != aTempTime) ) in ImplTimeReformat()
2725 Time aTime( GetTime() ); in ImplTimeSpinArea() local
2770 aTime += aAddTime; in ImplTimeSpinArea()
2774 if ( aTime > aAbsMaxTime ) in ImplTimeSpinArea()
2775 aTime = aAbsMaxTime; in ImplTimeSpinArea()
2777 if ( aTime < aAbsMinTime ) in ImplTimeSpinArea()
2778 aTime = aAbsMinTime; in ImplTimeSpinArea()
2780 ImplNewFieldValue( aTime ); in ImplTimeSpinArea()
3020 Time aTime( 0, 0, 0 ); in GetTime() local
3025 …if ( ImplTimeGetValue( GetField()->GetText(), aTime, GetFormat(), IsDuration(), ImplGetLocaleDataW… in GetTime()
3027 if ( aTime > GetMax() ) in GetTime()
3028 aTime = GetMax(); in GetTime()
3029 else if ( aTime < GetMin() ) in GetTime()
3030 aTime = GetMin(); in GetTime()
3035 aTime = GetInvalidTime(); in GetTime()
3037 aTime = maLastTime; in GetTime()
3041 return aTime; in GetTime()
3048 Time aTime( 0, 0, 0 ); in GetRealTime() local
3053 …if ( !ImplTimeGetValue( GetField()->GetText(), aTime, GetFormat(), IsDuration(), ImplGetLocaleData… in GetRealTime()
3055 aTime = GetInvalidTime(); in GetRealTime()
3058 return aTime; in GetRealTime()
3187 Time aTime( 0, 0, 0 ); in Notify() local
3188 …if ( ImplTimeGetValue( GetText(), aTime, GetFormat(), IsDuration(), ImplGetLocaleDataWrapper(), sa… in Notify()
3414 Time aTime = rTime; in InsertTime() local
3415 if ( aTime > GetMax() ) in InsertTime()
3416 aTime = GetMax(); in InsertTime()
3417 else if ( aTime < GetMin() ) in InsertTime()
3418 aTime = GetMin(); in InsertTime()
3426 ComboBox::InsertEntry( ImplGetLocaleDataWrapper().getTime( aTime, bSec, b100Sec ), nPos ); in InsertTime()
3446 Time aTime( 0, 0, 0 ); in GetTime() local
3447 …ImplTimeGetValue( ComboBox::GetEntry( nPos ), aTime, GetFormat(), IsDuration(), ImplGetLocaleDataW… in GetTime()
3448 return aTime; in GetTime()