Home
last modified time | relevance | path

Searched refs:newlocale (Results 1 – 12 of 12) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0003-Fallback-to-locale-C.patch6 Android's newlocale() return null for anything other than "", "C",
22 + return newlocale(LC_ALL_MASK, "C", 0);
167 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
168 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
181 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
182 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
255 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
256 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
269 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
270 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
[all …]
/ndk/sources/android/support/src/musl-locale/
Dnewlocale.c6 locale_t newlocale(int mask, const char *name, locale_t base) in newlocale() function
14 weak_alias(newlocale, __newlocale);
/ndk/sources/android/support/src/locale/
Dnewlocale.c32 locale_t newlocale(int category_mask, const char* locale, locale_t base) { in newlocale() function
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
Dc_locale_glibc2.c62 return (struct _Locale_ctype*)newlocale(LC_CTYPE_MASK, nm, NULL); in _Locale_ctype_create()
76 return (struct _Locale_numeric*)newlocale(LC_NUMERIC_MASK, nm, NULL); in _Locale_numeric_create()
82 return (struct _Locale_time*)newlocale(LC_TIME_MASK, nm, NULL); in _Locale_time_create()
88 return (struct _Locale_collate*)newlocale(LC_COLLATE_MASK, nm, NULL); in _Locale_collate_create()
94 return (struct _Locale_monetary*)newlocale(LC_MONETARY_MASK, nm, NULL); in _Locale_monetary_create()
100 return (struct _Locale_messages*)newlocale(LC_MESSAGES_MASK, nm, NULL); in _Locale_messages_create()
/ndk/sources/android/support/include/
Dlocale.h93 extern locale_t newlocale(int, const char*, locale_t);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/
Dlocale_win32.cpp15 locale_t newlocale( int mask, const char * locale, locale_t /*base*/ ) in newlocale() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dxlocale.h38 locale_t newlocale(int mask, const char * locale, locale_t base);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dlocale_win32.h36 locale_t newlocale( int mask, const char * locale, locale_t base );
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dlocale.cpp52 static locale_t result = newlocale(LC_ALL_MASK, "C", 0); in __cloc()
58 return newlocale(LC_ALL_MASK, "C", 0); in __new_cloc()
660 __l(newlocale(LC_ALL_MASK, n, 0)) in collate_byname()
677 __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) in collate_byname()
724 __l(newlocale(LC_ALL_MASK, n, 0)) in collate_byname()
741 __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) in collate_byname()
1144 __l(newlocale(LC_ALL_MASK, name, 0)) in ctype_byname()
1161 __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) in ctype_byname()
1213 __l(newlocale(LC_ALL_MASK, name, 0)) in ctype_byname()
1230 __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) in ctype_byname()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
Dxlocale.h39 locale_t newlocale(int category_mask, const char *locale, locale_t base) in newlocale() function
/ndk/sources/android/support/
DAndroid.mk24 src/locale/newlocale.c \
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c199 locale_t newlocale(int mask, const char *locale, locale_t base) { in newlocale() function