Home
last modified time | relevance | path

Searched refs:Codecvt (Results 1 – 8 of 8) sorted by relevance

/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
Dctor_codecvt.pass.cpp25 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
26 typedef std::wstring_convert<Codecvt> Myconv; in main()
31 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
32 typedef std::wstring_convert<Codecvt> Myconv; in main()
33 Myconv myconv(new Codecvt); in main()
36 static_assert(!std::is_convertible<Codecvt*, Myconv>::value, ""); in main()
37 static_assert( std::is_constructible<Myconv, Codecvt*>::value, ""); in main()
Dctor_codecvt_state.pass.cpp23 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
24 typedef std::wstring_convert<Codecvt> Myconv; in main()
25 Myconv myconv(new Codecvt, std::mbstate_t()); in main()
Dstate.pass.cpp21 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
22 typedef std::wstring_convert<Codecvt> Myconv; in main()
Dctor_copy.pass.cpp27 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
28 typedef std::wstring_convert<Codecvt> Myconv; in main()
Dconverted.pass.cpp22 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
23 typedef std::wstring_convert<Codecvt> Myconv; in main()
Dctor_err_string.pass.cpp25 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
26 typedef std::wstring_convert<Codecvt> Myconv; in main()
/external/libcxx/test/libcxx/localization/locales/locale.convenience/conversions/conversions.string/
Dctor_move.pass.cpp24 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef
25 typedef std::wstring_convert<Codecvt> Myconv; in main()
/external/libcxx/include/
Dlocale85 template<class Codecvt, class Elem = wchar_t,
93 typedef typename Codecvt::state_type state_type;
96 explicit wstring_convert(Codecvt* pcvt = new Codecvt); // explicit in C++14
97 wstring_convert(Codecvt* pcvt, state_type state);
118 template <class Codecvt, class Elem = wchar_t, class Tr = char_traits<Elem>>
125 explicit wbuffer_convert(streambuf* bytebuf = 0, Codecvt* pcvt = new Codecvt,