HomeSort by relevance Sort by last modified time
    Searched refs:Myconv (Results 1 - 17 of 17) sorted by null

  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
ctor_codecvt.pass.cpp 26 typedef std::wstring_convert<Codecvt> Myconv;
27 Myconv myconv; local
28 assert(myconv.converted() == 0);
32 typedef std::wstring_convert<Codecvt> Myconv;
33 Myconv myconv(new Codecvt);
34 assert(myconv.converted() == 0);
36 static_assert(!std::is_convertible<Codecvt*, Myconv>::value, "");
37 static_assert( std::is_constructible<Myconv, Codecvt*>::value, "")
    [all...]
ctor_codecvt_state.pass.cpp 24 typedef std::wstring_convert<Codecvt> Myconv;
25 Myconv myconv(new Codecvt, std::mbstate_t());
26 assert(myconv.converted() == 0);
state.pass.cpp 22 typedef std::wstring_convert<Codecvt> Myconv;
23 Myconv myconv; local
24 std::mbstate_t s = myconv.state();
ctor_copy.pass.cpp 28 typedef std::wstring_convert<Codecvt> Myconv;
29 static_assert(!std::is_copy_constructible<Myconv>::value, "");
30 static_assert(!std::is_copy_assignable<Myconv>::value, "");
ctor_err_string.pass.cpp 26 typedef std::wstring_convert<Codecvt> Myconv;
28 static_assert(!std::is_convertible<std::string, Myconv>::value, "");
29 static_assert( std::is_constructible<Myconv, std::string>::value, "");
33 Myconv myconv; local
36 myconv.to_bytes(L"\xDA83");
44 myconv.from_bytes('\xA5');
53 Myconv myconv("byte error");
54 std::string bs = myconv.to_bytes(L"\xDA83")
    [all...]
converted.pass.cpp 23 typedef std::wstring_convert<Codecvt> Myconv;
24 Myconv myconv; local
25 assert(myconv.converted() == 0);
26 std::string bs = myconv.to_bytes(L"\x40003");
27 assert(myconv.converted() == 1);
28 bs = myconv.to_bytes(L"\x40003\x65");
29 assert(myconv.converted() == 2);
30 std::wstring ws = myconv.from_bytes("\xF1\x80\x80\x83");
31 assert(myconv.converted() == 4)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/
ctor_codecvt.pass.cpp 24 typedef std::wstring_convert<Codecvt> Myconv;
25 Myconv myconv; local
26 assert(myconv.converted() == 0);
30 typedef std::wstring_convert<Codecvt> Myconv;
31 Myconv myconv(new Codecvt);
32 assert(myconv.converted() == 0);
34 static_assert(!std::is_convertible<Codecvt*, Myconv>::value, "");
35 static_assert( std::is_constructible<Myconv, Codecvt*>::value, "")
    [all...]
ctor_codecvt_state.pass.cpp 24 typedef std::wstring_convert<Codecvt> Myconv;
25 Myconv myconv(new Codecvt, std::mbstate_t());
26 assert(myconv.converted() == 0);
state.pass.cpp 22 typedef std::wstring_convert<Codecvt> Myconv;
23 Myconv myconv; local
24 std::mbstate_t s = myconv.state();
ctor_err_string.pass.cpp 24 typedef std::wstring_convert<Codecvt> Myconv;
26 static_assert(!std::is_convertible<std::string, Myconv>::value, "");
27 static_assert( std::is_constructible<Myconv, std::string>::value, "");
30 Myconv myconv; local
33 myconv.to_bytes(L"\xDA83");
41 myconv.from_bytes('\xA5');
49 Myconv myconv("byte error");
50 std::string bs = myconv.to_bytes(L"\xDA83")
    [all...]
converted.pass.cpp 23 typedef std::wstring_convert<Codecvt> Myconv;
24 Myconv myconv; local
25 assert(myconv.converted() == 0);
26 std::string bs = myconv.to_bytes(L"\x40003");
27 assert(myconv.converted() == 1);
28 bs = myconv.to_bytes(L"\x40003\x65");
29 assert(myconv.converted() == 2);
30 std::wstring ws = myconv.from_bytes("\xF1\x80\x80\x83");
31 assert(myconv.converted() == 4)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.convenience/conversions/conversions.string/
ctor_codecvt.pass.cpp 24 typedef std::wstring_convert<Codecvt> Myconv;
25 Myconv myconv; local
26 assert(myconv.converted() == 0);
30 typedef std::wstring_convert<Codecvt> Myconv;
31 Myconv myconv(new Codecvt);
32 assert(myconv.converted() == 0);
34 static_assert(!std::is_convertible<Codecvt*, Myconv>::value, "");
35 static_assert( std::is_constructible<Myconv, Codecvt*>::value, "")
    [all...]
ctor_codecvt_state.pass.cpp 24 typedef std::wstring_convert<Codecvt> Myconv;
25 Myconv myconv(new Codecvt, std::mbstate_t());
26 assert(myconv.converted() == 0);
state.pass.cpp 22 typedef std::wstring_convert<Codecvt> Myconv;
23 Myconv myconv; local
24 std::mbstate_t s = myconv.state();
ctor_err_string.pass.cpp 25 typedef std::wstring_convert<Codecvt> Myconv;
27 static_assert(!std::is_convertible<std::string, Myconv>::value, "");
28 static_assert( std::is_constructible<Myconv, std::string>::value, "");
31 Myconv myconv; local
34 myconv.to_bytes(L"\xDA83");
42 myconv.from_bytes('\xA5');
50 Myconv myconv("byte error");
51 std::string bs = myconv.to_bytes(L"\xDA83")
    [all...]
converted.pass.cpp 23 typedef std::wstring_convert<Codecvt> Myconv;
24 Myconv myconv; local
25 assert(myconv.converted() == 0);
26 std::string bs = myconv.to_bytes(L"\x40003");
27 assert(myconv.converted() == 1);
28 bs = myconv.to_bytes(L"\x40003\x65");
29 assert(myconv.converted() == 2);
30 std::wstring ws = myconv.from_bytes("\xF1\x80\x80\x83");
31 assert(myconv.converted() == 4)
    [all...]
  /external/libcxx/test/libcxx/localization/locales/locale.convenience/conversions/conversions.string/
ctor_move.pass.cpp 25 typedef std::wstring_convert<Codecvt> Myconv;
28 Myconv myconv; local
29 myconv.from_bytes("\xF1\x80\x80\x83");
30 const auto old_converted = myconv.converted();
31 assert(myconv.converted() == 4);
33 Myconv myconv2(std::move(myconv));

Completed in 205 milliseconds