Home
last modified time | relevance | path

Searched refs:newloc (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
Dxlocale.h41 _LC_locale_t *newloc, *loc; in newlocale() local
47 if ((newloc = (_LC_locale_t *)calloc(1, sizeof(_LC_locale_t))) == NULL) in newlocale()
54 memcpy(newloc, base, sizeof (_LC_locale_t)); in newlocale()
56 newloc->lc_collate = loc->lc_collate; in newlocale()
58 newloc->lc_ctype = loc->lc_ctype; in newlocale()
62 newloc->lc_monetary = loc->lc_monetary; in newlocale()
64 newloc->lc_time = loc->lc_time; in newlocale()
66 newloc->lc_numeric = loc->lc_numeric; in newlocale()
67 return (locale_t)newloc; in newlocale()
75 locale_t uselocale(locale_t newloc) in uselocale() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/
Dlocale_win32.cpp19 locale_t uselocale( locale_t newloc ) in uselocale() argument
22 if ( newloc == NULL ) in uselocale()
27 setlocale( LC_ALL, newloc->locinfo->lc_category[LC_ALL].locale ); in uselocale()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dlocale_win32.h37 locale_t uselocale( locale_t newloc );
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dios.cpp136 ios_base::imbue(const locale& newloc) in imbue() argument
141 loc_storage = newloc; in imbue()