Searched refs:__cloc (Results 1 – 2 of 2) sorted by relevance
/external/libcxx/include/ |
D | locale | 222 # define _LIBCPP_GET_C_LOCALE __cloc() 224 _LIBCPP_FUNC_VIS locale_t __cloc(); 1193 if (__sscanf_l(__buf.c_str(), __cloc(), "%p", &__v) != 1) 1563 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); 1593 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); 1623 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); 1653 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); 1685 __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, 1692 __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, __v); 1701 __nc = __asprintf_l(&__nb, __cloc(), __fmt, [all …]
|
/external/libcxx/src/ |
D | locale.cpp | 48 locale_t __cloc() { in __cloc() function 818 return (isascii(c) && iswlower_l(c, __cloc())) ? c-L'a'+L'A' : c; in do_toupper() 832 *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low; in do_toupper() 845 return (isascii(c) && isupper_l(c, __cloc())) ? c-L'A'+'a' : c; in do_tolower() 859 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-L'A'+L'a' : *low; in do_tolower() 928 return (isascii(c) && islower_l(c, __cloc())) ? c-'a'+'A' : c; in do_toupper() 945 *low = (isascii(*low) && islower_l(*low, __cloc())) ? *low-'a'+'A' : *low; in do_toupper() 962 return (isascii(c) && isupper_l(c, __cloc())) ? c-'A'+'a' : c; in do_tolower() 977 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-'A'+'a' : *low; in do_tolower() 1110 return __cloc()->__ctype_b; in classic_table() [all …]
|