/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0003-Fallback-to-locale-C.patch | 6 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/ |
D | newlocale.c | 6 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/ |
D | newlocale.c | 32 locale_t newlocale(int category_mask, const char* locale, locale_t base) { in newlocale() function
|
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/ |
D | c_locale_glibc2.c | 62 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/ |
D | locale.h | 93 extern locale_t newlocale(int, const char*, locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/ |
D | locale_win32.cpp | 15 locale_t newlocale( int mask, const char * locale, locale_t /*base*/ ) in newlocale() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 38 locale_t newlocale(int mask, const char * locale, locale_t base);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | locale_win32.h | 36 locale_t newlocale( int mask, const char * locale, locale_t base );
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 52 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/ |
D | xlocale.h | 39 locale_t newlocale(int category_mask, const char *locale, locale_t base) in newlocale() function
|
/ndk/sources/android/support/ |
D | Android.mk | 24 src/locale/newlocale.c \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
D | xlocale.c | 199 locale_t newlocale(int mask, const char *locale, locale_t base) { in newlocale() function
|