Lines Matching refs:nValue

53 	BigInt	 nValue = 1;  in ImplPower10()  local
56 nValue *= 10; in ImplPower10()
58 return nValue; in ImplPower10()
247 BigInt nValue( aStr ); in ImplNumericGetValue() local
251 nValue+=1; in ImplNumericGetValue()
253 nValue-=1; in ImplNumericGetValue()
256 rValue = nValue; in ImplNumericGetValue()
287 BigInt nValue; in ImplLongCurrencyReformat() local
288 if ( !ImplNumericGetValue( rStr, nValue, nDecDigits, rLocaleDataWrapper, sal_True ) ) in ImplLongCurrencyReformat()
292 BigInt nTempVal = nValue; in ImplLongCurrencyReformat()
298 if ( rFormatter.GetErrorHdl().IsSet() && (nValue != nTempVal) ) in ImplLongCurrencyReformat()
551 BigInt LongCurrencyFormatter::Normalize( BigInt nValue ) const in Normalize()
553 return (nValue * ImplPower10( GetDecimalDigits() ) ); in Normalize()
558 BigInt LongCurrencyFormatter::Denormalize( BigInt nValue ) const in Denormalize()
563 nTmp += nValue; in Denormalize()
692 BigInt nValue = GetValue(); in Up() local
693 nValue += mnSpinSize; in Up()
694 if ( nValue > mnMax ) in Up()
695 nValue = mnMax; in Up()
697 ImplNewLongCurrencyFieldValue( this, nValue ); in Up()
705 BigInt nValue = GetValue(); in Down() local
706 nValue -= mnSpinSize; in Down()
707 if ( nValue < mnMin ) in Down()
708 nValue = mnMin; in Down()
710 ImplNewLongCurrencyFieldValue( this, nValue ); in Down()
821 void LongCurrencyBox::InsertValue( BigInt nValue, sal_uInt16 nPos ) in InsertValue() argument
823 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nValue, GetDecimalDigits(), GetCurrencySymbo… in InsertValue()
829 void LongCurrencyBox::RemoveValue( BigInt nValue ) in RemoveValue() argument
831 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nValue, GetDecimalDigits(), GetCurrencySymbo… in RemoveValue()
839 BigInt nValue = 0; in GetValue() local
840 ImplLongCurrencyGetValue( ComboBox::GetEntry( nPos ), nValue, in GetValue()
842 return nValue; in GetValue()
847 sal_uInt16 LongCurrencyBox::GetValuePos( BigInt nValue ) const in GetValuePos()
849 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nValue, GetDecimalDigits(), GetCurrencySymbo… in GetValuePos()