Lines Matching refs:pCurrencyFormatter

5788     LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter();  variable
5789 if ( pCurrencyFormatter )
5793 pCurrencyFormatter->SetValue(
5794 ImplCalcLongValue( Value, pCurrencyFormatter->GetDecimalDigits() ) );
5812 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in getValue() local
5813 return pCurrencyFormatter in getValue()
5814 …? ImplCalcDoubleValue( (double)pCurrencyFormatter->GetValue(), pCurrencyFormatter->GetDecimalDigit… in getValue()
5822 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in setMin() local
5823 if ( pCurrencyFormatter ) in setMin()
5824 pCurrencyFormatter->SetMin( in setMin()
5825 ImplCalcLongValue( Value, pCurrencyFormatter->GetDecimalDigits() ) ); in setMin()
5832 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in getMin() local
5833 return pCurrencyFormatter in getMin()
5834 …? ImplCalcDoubleValue( (double)pCurrencyFormatter->GetMin(), pCurrencyFormatter->GetDecimalDigits(… in getMin()
5842 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in setMax() local
5843 if ( pCurrencyFormatter ) in setMax()
5844 pCurrencyFormatter->SetMax( in setMax()
5845 ImplCalcLongValue( Value, pCurrencyFormatter->GetDecimalDigits() ) ); in setMax()
5852 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in getMax() local
5853 return pCurrencyFormatter in getMax()
5854 …? ImplCalcDoubleValue( (double)pCurrencyFormatter->GetMax(), pCurrencyFormatter->GetDecimalDigits(… in getMax()
5933 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in setDecimalDigits() local
5934 if ( pCurrencyFormatter ) in setDecimalDigits()
5937 pCurrencyFormatter->SetDecimalDigits( Value ); in setDecimalDigits()
5946 LongCurrencyFormatter* pCurrencyFormatter = (LongCurrencyFormatter*) GetFormatter(); in getDecimalDigits() local
5947 return pCurrencyFormatter ? pCurrencyFormatter->GetDecimalDigits() : 0; in getDecimalDigits()