Lines Matching refs:nTempVal

448         double nTempVal = rValue;  in ImplNumericReformat()  local
450 if ( nTempVal > mnMax ) in ImplNumericReformat()
451 nTempVal = (double)mnMax; in ImplNumericReformat()
452 else if ( nTempVal < mnMin ) in ImplNumericReformat()
453 nTempVal = (double)mnMin; in ImplNumericReformat()
455 if ( GetErrorHdl().IsSet() && (rValue != nTempVal) ) in ImplNumericReformat()
457 mnCorrectedValue = (sal_Int64)nTempVal; in ImplNumericReformat()
467 rOutStr = CreateFieldText( (sal_Int64)nTempVal ); in ImplNumericReformat()
1484 double nTempVal = rValue; in ImplMetricReformat() local
1486 if ( nTempVal > GetMax() ) in ImplMetricReformat()
1487 nTempVal = (double)GetMax(); in ImplMetricReformat()
1488 else if ( nTempVal < GetMin()) in ImplMetricReformat()
1489 nTempVal = (double)GetMin(); in ImplMetricReformat()
1491 if ( GetErrorHdl().IsSet() && (rValue != nTempVal) ) in ImplMetricReformat()
1493 mnCorrectedValue = (sal_Int64)nTempVal; in ImplMetricReformat()
1503 rOutStr = CreateFieldText( (sal_Int64)nTempVal ); in ImplMetricReformat()
2121 double nTempVal = nValue; in ImplCurrencyReformat() local
2123 if ( nTempVal > GetMax() ) in ImplCurrencyReformat()
2124 nTempVal = (double)GetMax(); in ImplCurrencyReformat()
2125 else if ( nTempVal < GetMin()) in ImplCurrencyReformat()
2126 nTempVal = (double)GetMin(); in ImplCurrencyReformat()
2128 if ( GetErrorHdl().IsSet() && (nValue != nTempVal) ) in ImplCurrencyReformat()
2130 mnCorrectedValue = (sal_Int64)nTempVal; in ImplCurrencyReformat()
2140 rOutStr = CreateFieldText( (long)nTempVal ); in ImplCurrencyReformat()