Home
last modified time | relevance | path

Searched refs:wide_name (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/locale/test/
Dtest_codecvt.cpp19 static wchar_t const *wide_name = L"\U0001D49E-\u043F\u0440\u0438\u0432\u0435\u0442-\u3084\u3042.tx… variable
37 wchar_t const *wptr = wide_name; in test_codecvt_in_n_m()
38 int wlen = wcslen(wide_name); in test_codecvt_in_n_m()
89 TEST(wptr == wide_name + wlen); in test_codecvt_in_n_m()
97 int wlen = wcslen(wide_name); in test_codecvt_out_n_m()
102 wchar_t const *from_next = wide_name; in test_codecvt_out_n_m()
103 wchar_t const *real_from_end = wide_name + wlen; in test_codecvt_out_n_m()
157 for(int j=1;j<=(int)wcslen(wide_name)+1;j++) { in test_codecvt_conv()
/third_party/boost/libs/nowide/test/
Dtest_codecvt.cpp24 static const wchar_t* wide_name = wide_name_str.c_str(); variable
30 const wchar_t* wptr = wide_name; in test_codecvt_in_n_m()
31 size_t wlen = std::wcslen(wide_name); in test_codecvt_in_n_m()
83 TEST(wptr == wide_name + wlen); in test_codecvt_in_n_m()
90 size_t wlen = std::wcslen(wide_name); in test_codecvt_out_n_m()
95 const wchar_t* from_next = wide_name; in test_codecvt_out_n_m()
96 const wchar_t* real_from_end = wide_name + wlen; in test_codecvt_out_n_m()
153 const size_t wide_len = std::wcslen(wide_name); in test_codecvt_conv()
/third_party/boost/libs/regex/src/
Dw32_regex_traits.cpp255 LPWSTR wide_name = (LPWSTR)_alloca( (name.size() + 1) * sizeof(WCHAR) ); in w32_cat_open()
256 …if (::MultiByteToWideChar(CP_ACP, 0, name.c_str(), name.size(), wide_name, name.size() + 1) == 0) in w32_cat_open()
259 cat_type result(::LoadLibraryW(wide_name), &free_module); in w32_cat_open()