• Home
  • Raw
  • Download

Lines Matching refs:localeName

234         const wchar_t *localeName = nullptr;  in Win32NumberFormat()  local
238localeName = reinterpret_cast<const wchar_t*>(toOldUCharPtr(fWindowsLocaleName->getTerminatedBuffe… in Win32NumberFormat()
244 getCurrencyFormat(&fFormatInfo->currency, localeName); in Win32NumberFormat()
246 getNumberFormat(&fFormatInfo->number, localeName); in Win32NumberFormat()
285 const wchar_t *localeName = nullptr; in operator =() local
289localeName = reinterpret_cast<const wchar_t*>(toOldUCharPtr(fWindowsLocaleName->getTerminatedBuffe… in operator =()
294 getCurrencyFormat(&fFormatInfo->currency, localeName); in operator =()
297 getNumberFormat(&fFormatInfo->number, localeName); in operator =()
398 const wchar_t *localeName = nullptr; in format() local
402localeName = reinterpret_cast<const wchar_t*>(toOldUCharPtr(fWindowsLocaleName->getTerminatedBuffe… in format()
414 …result = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SI… in format()
420 … int newLength = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, NULL, 0); in format()
424 … GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, newLength); in format()
436 … result = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZE); in format()
440 … int newLength = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, NULL, 0); in format()
444 GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, newLength); in format()