Lines Matching refs:pAllCurrencies
418 const Currency2* pAllCurrencies = aAllCurrencies.getConstArray(); in ImplGetDefaultValue() local
419 const Currency2* pAllCurrenciesEnd = pAllCurrencies + aAllCurrencies.getLength(); in ImplGetDefaultValue()
424 …DBG_ASSERT( pAllCurrencies != pAllCurrenciesEnd, "UnoControlModel::ImplGetDefaultValue: no currenc… in ImplGetDefaultValue()
425 if ( pAllCurrencies != pAllCurrenciesEnd ) in ImplGetDefaultValue()
427 sBankSymbol = pAllCurrencies->BankSymbol; in ImplGetDefaultValue()
428 sCurrencySymbol = pAllCurrencies->Symbol; in ImplGetDefaultValue()
435 for ( ;pAllCurrencies != pAllCurrenciesEnd; ++pAllCurrencies ) in ImplGetDefaultValue()
436 if ( pAllCurrencies->BankSymbol == sBankSymbol ) in ImplGetDefaultValue()
438 sCurrencySymbol = pAllCurrencies->Symbol; in ImplGetDefaultValue()
439 if ( pAllCurrencies->LegacyOnly ) in ImplGetDefaultValue()
444 …DBG_ASSERT( bLegacy || pAllCurrencies != pAllCurrenciesEnd, "UnoControlModel::ImplGetDefaultValue:… in ImplGetDefaultValue()