Searched refs:Codecvt (Results 1 – 8 of 8) sorted by relevance
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/ |
D | ctor_codecvt.pass.cpp | 25 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()
|
D | ctor_codecvt_state.pass.cpp | 23 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()
|
D | state.pass.cpp | 21 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef 22 typedef std::wstring_convert<Codecvt> Myconv; in main()
|
D | ctor_copy.pass.cpp | 27 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef 28 typedef std::wstring_convert<Codecvt> Myconv; in main()
|
D | converted.pass.cpp | 22 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef 23 typedef std::wstring_convert<Codecvt> Myconv; in main()
|
D | ctor_err_string.pass.cpp | 25 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/ |
D | ctor_move.pass.cpp | 24 typedef std::codecvt_utf8<wchar_t> Codecvt; in main() typedef 25 typedef std::wstring_convert<Codecvt> Myconv; in main()
|
/external/libcxx/include/ |
D | locale | 85 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,
|