• Home
  • Raw
  • Download

Lines Matching refs:localeName

229         const wchar_t *localeName = nullptr;  in Win32NumberFormat()  local
233localeName = reinterpret_cast<const wchar_t*>(toOldUCharPtr(fWindowsLocaleName->getTerminatedBuffe… in Win32NumberFormat()
239 getCurrencyFormat(&fFormatInfo->currency, localeName); in Win32NumberFormat()
241 getNumberFormat(&fFormatInfo->number, localeName); in Win32NumberFormat()
280 const wchar_t *localeName = nullptr; in operator =() local
284localeName = reinterpret_cast<const wchar_t*>(toOldUCharPtr(fWindowsLocaleName->getTerminatedBuffe… in operator =()
289 getCurrencyFormat(&fFormatInfo->currency, localeName); in operator =()
292 getNumberFormat(&fFormatInfo->number, localeName); in operator =()
393 const wchar_t *localeName = nullptr; in format() local
397localeName = reinterpret_cast<const wchar_t*>(toOldUCharPtr(fWindowsLocaleName->getTerminatedBuffe… in format()
409 …result = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SI… in format()
415 … int newLength = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, NULL, 0); in format()
419 … GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, newLength); in format()
431 … result = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZE); in format()
435 … int newLength = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, NULL, 0); in format()
439 GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, newLength); in format()