/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
D | isblank_l.c | 32 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isblank_l_0100() local 33 int ret = isblank_l(' ', m_locale); in isblank_l_0100() 45 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isblank_l_0200() local 46 int ret = isblank_l('\t', m_locale); in isblank_l_0200() 58 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isblank_l_0300() local 59 int ret = isblank_l('\r', m_locale); in isblank_l_0300() 71 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isblank_l_0400() local 72 int ret = isblank_l('\n', m_locale); in isblank_l_0400() 84 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isblank_l_0500() local 85 int ret = isblank_l('\v', m_locale); in isblank_l_0500() [all …]
|
D | isspace_l.c | 31 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isspace_l_0100() local 32 int ret = isspace_l(' ', m_locale); in isspace_l_0100() 43 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isspace_l_0200() local 44 int ret = isspace_l('\r', m_locale); in isspace_l_0200() 55 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isspace_l_0300() local 56 int ret = isspace_l('\n', m_locale); in isspace_l_0300() 67 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isspace_l_0400() local 68 int ret = isspace_l('\v', m_locale); in isspace_l_0400() 79 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isspace_l_0500() local 80 int ret = isspace_l('\f', m_locale); in isspace_l_0500() [all …]
|
D | isprint_l.c | 32 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isprint_l_0100() local 33 int ret = isprint_l(32, m_locale); in isprint_l_0100() 45 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isprint_l_0200() local 46 int ret = isprint_l(63, m_locale); in isprint_l_0200() 58 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isprint_l_0300() local 59 int ret = isprint_l(126, m_locale); in isprint_l_0300() 71 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isprint_l_0400() local 72 int ret = isprint_l(20, m_locale); in isprint_l_0400() 84 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isprint_l_0500() local 87 int ret = isprint_l((char)i, m_locale); in isprint_l_0500()
|
D | iscntrl_l.c | 33 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iscntrl_l_0100() local 34 int ret = iscntrl_l(0, m_locale); in iscntrl_l_0100() 46 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iscntrl_l_0200() local 47 int ret = iscntrl_l(31, m_locale); in iscntrl_l_0200() 59 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iscntrl_l_0300() local 60 int ret = iscntrl_l(127, m_locale); in iscntrl_l_0300() 72 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iscntrl_l_0400() local 73 int ret = iscntrl_l('[', m_locale); in iscntrl_l_0400() 84 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iscntrl_l_0500() local 87 int ret = iscntrl_l((char)i, m_locale); in iscntrl_l_0500()
|
D | ispunct_l.c | 32 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in ispunct_l_0100() local 33 int ret = ispunct_l(var1, m_locale); in ispunct_l_0100() 45 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in ispunct_l_0200() local 46 int ret = ispunct_l(var1, m_locale); in ispunct_l_0200() 58 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in ispunct_l_0300() local 59 int ret = ispunct_l(var1, m_locale); in ispunct_l_0300() 71 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in ispunct_l_0400() local 72 int ret = ispunct_l(var1, m_locale); in ispunct_l_0400() 85 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in ispunct_l_0500() local 87 if (ispunct_l(i, m_locale)) { in ispunct_l_0500()
|
D | isgraph_l.c | 33 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isgraph_l_0100() local 34 int ret = isgraph_l('a', m_locale); in isgraph_l_0100() 46 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isgraph_l_0200() local 47 int ret = isgraph_l('!', m_locale); in isgraph_l_0200() 58 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isgraph_l_0300() local 59 int ret = isgraph_l(' ', m_locale); in isgraph_l_0300() 70 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isgraph_l_0400() local 73 int ret = isgraph_l((char)i, m_locale); in isgraph_l_0400()
|
D | isalpha_l.c | 31 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalpha_l_0100() local 32 int ret = isalpha_l('a', m_locale); in isalpha_l_0100() 43 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalpha_l_0200() local 44 int ret = isalpha_l('1', m_locale); in isalpha_l_0200() 55 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalpha_l_0300() local 56 int ret = isalpha_l('[', m_locale); in isalpha_l_0300() 67 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalpha_l_0400() local 70 int ret = isalpha_l((char)i, m_locale); in isalpha_l_0400()
|
D | isalnum_l.c | 32 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalnum_l_0100() local 33 int ret = isalnum_l('a', m_locale); in isalnum_l_0100() 45 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalnum_l_0200() local 46 int ret = isalnum_l('1', m_locale); in isalnum_l_0200() 58 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalnum_l_0300() local 59 int ret = isalnum_l('*', m_locale); in isalnum_l_0300() 71 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in isalnum_l_0400() local 74 int ret = isalnum_l((char)i, m_locale); in isalnum_l_0400()
|
/third_party/musl/libc-test/src/functionalext/supplement/wctype/ |
D | iswctype_l.c | 34 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswctype_l_0100() local 35 int ret = iswctype_l(c, wt, m_locale); in iswctype_l_0100() 50 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswctype_l_0200() local 51 int ret = iswctype_l(c, wt, m_locale); in iswctype_l_0200() 66 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswctype_l_0300() local 67 int ret = iswctype_l(c, wt, m_locale); in iswctype_l_0300() 82 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswctype_l_0400() local 83 int ret = iswctype_l(c, wt, m_locale); in iswctype_l_0400() 98 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswctype_l_0500() local 99 int ret = iswctype_l(c, wt, m_locale); in iswctype_l_0500() [all …]
|
D | iswalnum_l.c | 33 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswalnum_l_0100() local 34 int ret = iswalnum_l(c, m_locale); in iswalnum_l_0100() 47 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswalnum_l_0200() local 48 int ret = iswalnum_l('1', m_locale); in iswalnum_l_0200() 61 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswalnum_l_0300() local 62 int ret = iswalnum_l('*', m_locale); in iswalnum_l_0300() 74 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswalnum_l_0400() local 77 int ret = iswalnum_l((wchar_t)i, m_locale); in iswalnum_l_0400()
|
D | iswgraph_l.c | 35 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswgraph_l_0100() local 36 int ret = iswgraph_l(c, m_locale); in iswgraph_l_0100() 49 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswgraph_l_0200() local 50 int ret = iswgraph_l(c, m_locale); in iswgraph_l_0200() 62 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswgraph_l_0300() local 63 int ret = iswgraph_l(c, m_locale); in iswgraph_l_0300() 74 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswgraph_l_0400() local 77 int ret = iswgraph_l((wchar_t)i, m_locale); in iswgraph_l_0400()
|
D | iswgraph.c | 70 locale_t m_locale = newlocale(LC_ALL_MASK, "en_US.UTF-8", NULL); in iswgraph_0400() local
|
/third_party/boost/boost/archive/ |
D | basic_streambuf_locale_saver.hpp | 51 m_locale(s.getloc()) in basic_streambuf_locale_saver() 55 m_streambuf.pubimbue(m_locale); in ~basic_streambuf_locale_saver() 59 std::locale const m_locale; member in boost::archive::basic_streambuf_locale_saver 69 m_locale(s.getloc()) in basic_istream_locale_saver() 74 m_istream.imbue(m_locale); in ~basic_istream_locale_saver() 78 std::locale const m_locale; member in boost::archive::basic_istream_locale_saver 88 m_locale(s.getloc()) in basic_ostream_locale_saver() 92 m_ostream.imbue(m_locale); in ~basic_ostream_locale_saver() 96 std::locale const m_locale; member in boost::archive::basic_ostream_locale_saver
|
/third_party/boost/boost/regex/v4/ |
D | w32_regex_traits.hpp | 137 lcid_type m_locale; member 143 lcid_type result(m_locale); in imbue() 144 m_locale = l; in imbue() 171 …if(::boost::BOOST_REGEX_DETAIL_NS::w32_is_lower(c, this->m_locale)) return regex_constants::escape… in escape_syntax_type() 172 …if(::boost::BOOST_REGEX_DETAIL_NS::w32_is_upper(c, this->m_locale)) return regex_constants::escape… in escape_syntax_type() 179 return ::boost::BOOST_REGEX_DETAIL_NS::w32_tolower(c, this->m_locale); in tolower() 183 return ::boost::BOOST_REGEX_DETAIL_NS::w32_is(this->m_locale, mask, c); in isctype() 217 …string_type mss = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, i, get_default_… in w32_regex_traits_char_layer() 334 return ::boost::BOOST_REGEX_DETAIL_NS::w32_transform(this->m_locale, p1, p2); in transform() 471 …string_type s = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, i+200, default_me… in w32_regex_traits_implementation() [all …]
|
D | cpp_regex_traits.hpp | 180 std::locale m_locale; member 216 std::locale result(m_locale); in imbue() 217 m_locale = l; in imbue() 288 this->m_locale); in init() 716 this->m_locale); in init() 1044 return m_pimpl->m_locale; in getloc()
|
/third_party/boost/boost/property_tree/detail/ |
D | ptree_utils.hpp | 28 std::locale m_locale; member 31 return std::toupper(c1, m_locale) < std::toupper(c2, m_locale); in operator ()()
|
/third_party/musl/libc-test/src/functionalext/time/ |
D | strftime_l.c | 47 locale_t m_locale = newlocale(LC_ALL_MASK, "zh_cn.UTF-8", NULL); in strftime_l_0100() local 48 strftime_l(buffer, sizeof(buffer) - 1, "%c", timeptr, m_locale); in strftime_l_0100()
|
/third_party/boost/libs/regex/src/ |
D | w32_regex_traits.cpp | 83 …string_type mss = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, i, get_default_… in init() 110 if(::boost::BOOST_REGEX_DETAIL_NS::w32_is(this->m_locale, 0x0002u, (char)i)) in init() 112 else if(::boost::BOOST_REGEX_DETAIL_NS::w32_is(this->m_locale, 0x0001u, (char)i)) in init() 124 …int r = ::LCMapStringA(this->m_locale, LCMAP_LOWERCASE, char_map, 1 << CHAR_BIT, this->m_lower_map… in init() 127 UINT code_page = get_code_page_for_locale_id(this->m_locale); in init() 135 …int r = ::LCMapStringW(this->m_locale, LCMAP_LOWERCASE, wide_char_map, 1 << CHAR_BIT, wide_lower… in init() 150 r = ::GetStringTypeExA(this->m_locale, CT_CTYPE1, char_map, 1 << CHAR_BIT, this->m_type_map); in init() 152 … r = ::GetStringTypeExW(this->m_locale, CT_CTYPE1, wide_char_map, 1 << CHAR_BIT, this->m_type_map); in init()
|
D | cpp_regex_traits.cpp | 49 this->m_locale); in init()
|
/third_party/boost/boost/regex/ |
D | icu.hpp | 53 : m_locale(l) in icu_regex_traits_implementation() 68 return m_locale; in getloc() 85 …U_NAMESPACE_QUALIFIER Locale m_locale; // The ICU locale that we'… member in boost::BOOST_REGEX_DETAIL_NS::icu_regex_traits_implementation
|