Home
last modified time | relevance | path

Searched refs:nTempValue (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/vcl/source/control/
H A Dfield.cxx643 double nTempValue; in GetValue() local
645 if ( ImplNumericGetValue( GetField()->GetText(), nTempValue, in GetValue()
649 if ( nTempValue > mnMax ) in GetValue()
650 nTempValue = (double)mnMax; in GetValue()
651 else if ( nTempValue < mnMin ) in GetValue()
652 nTempValue = (double)mnMin; in GetValue()
653 return (sal_Int64)nTempValue; in GetValue()
1612 double nTempValue; in GetValue() local
1614 …if ( !ImplMetricGetValue( GetField()->GetText(), nTempValue, mnBaseValue, GetDecimalDigits(), Impl… in GetValue()
1615 nTempValue = (double)mnLastValue; in GetValue()
[all …]
H A Dlongcurr.cxx438 BigInt nTempValue; in GetValue() local
439 …if ( ImplLongCurrencyGetValue( GetField()->GetText(), nTempValue, GetDecimalDigits(), GetLocaleDat… in GetValue()
441 if ( nTempValue > mnMax ) in GetValue()
442 nTempValue = mnMax; in GetValue()
443 else if ( nTempValue < mnMin ) in GetValue()
444 nTempValue = mnMin; in GetValue()
445 return nTempValue; in GetValue()
/AOO41X/main/xmloff/source/core/
H A DProgressBarHelper.cxx87 void ProgressBarHelper::SetValue(sal_Int32 nTempValue) in SetValue() argument
91 if ((nTempValue >= nValue) && (!bStrict || (bStrict && (nTempValue <= nReference)))) in SetValue()
94 if (nTempValue > nReference) in SetValue()
107 nValue = nTempValue; in SetValue()
H A Dxmluconv.cxx2140 sal_Int32 nTempValue = 0; in convertAny() local
2141 if (aValue >>= nTempValue) in convertAny()
2145 SvXMLUnitConverter::convertNumber(sValue, nTempValue); in convertAny()
2254 sal_Int32 nTempValue = 0; in convertAny() local
2255 SvXMLUnitConverter::convertNumber(nTempValue, sValue); in convertAny()
2256 aValue <<= nTempValue; in convertAny()
/AOO41X/main/svtools/source/control/
H A Dctrlbox.cxx1433 …sal_Int64 nTempValue = MetricField::ConvertValue( nNewValue, GetBaseValue(), GetDecimalDigits(), e… in SetValue() local
1437 String aName = aFontSizeNames.Size2Name( static_cast<long>(nTempValue) ); in SetValue()
1440 mnLastValue = nTempValue; in SetValue()
1506 …sal_Int64 nTempValue = MetricField::ConvertValue( nNewValue, GetBaseValue(), GetDecimalDigits(), e… in SetUserValue() local
1510 String aName = aFontSizeNames.Size2Name( static_cast<long>(nTempValue) ); in SetUserValue()
1513 mnLastValue = nTempValue; in SetUserValue()