/external/libcxx/include/ |
D | codecvt | 85 typedef wchar_t intern_type; 97 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 102 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const; 120 typedef char16_t intern_type; 132 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 137 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const; 155 typedef char32_t intern_type; 167 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 172 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const; 208 typedef wchar_t intern_type; [all …]
|
D | __locale | 829 typedef char intern_type; 839 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 855 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const 894 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 898 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const; 916 typedef wchar_t intern_type; 924 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 940 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const 977 … const intern_type* __frm, const intern_type* __frm_end, const intern_type*& __frm_nxt, 981 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const; [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
D | wchar_t_out.pass.cpp | 31 const std::basic_string<F::intern_type> from(L"some text"); in main() 34 const F::intern_type* from_next = 0; in main() 44 std::basic_string<F::intern_type> from(L"some text"); in main() 48 const F::intern_type* from_next = 0; in main() 58 std::basic_string<F::intern_type> from(L"some text"); in main() 61 const F::intern_type* from_next = 0; in main()
|
D | utf_sanity_check.pass.cpp | 34 F32_8::intern_type* c32p; in main() 35 F16_8::intern_type* c16p; in main() 37 const F32_8::intern_type* c_c32p; in main() 38 const F16_8::intern_type* c_c16p; in main() 40 F32_8::intern_type c32; in main() 41 F16_8::intern_type c16[2]; in main() 45 for (F32_8::intern_type c32x = 0; c32x < 0x110003; ++c32x) in main()
|
D | wchar_t_in.pass.cpp | 30 const std::basic_string<F::intern_type> expected(from.begin(), from.end()); in main() 31 std::basic_string<F::intern_type> to(from.size(), F::intern_type()); in main() 35 F::intern_type* to_next = 0; in main()
|
D | char16_t_in.pass.cpp | 29 F::intern_type to[9]; in main() 33 F::intern_type* to_next = 0; in main()
|
D | char32_t_in.pass.cpp | 29 F::intern_type to[9]; in main() 33 F::intern_type* to_next = 0; in main()
|
D | char16_t_out.pass.cpp | 32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; in main() 35 const F::intern_type* from_next = 0; in main()
|
D | char32_t_out.pass.cpp | 32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; in main() 35 const F::intern_type* from_next = 0; in main()
|
D | char_out.pass.cpp | 28 const std::basic_string<F::intern_type> from("some text"); in main()
|
D | char_in.pass.cpp | 28 const std::basic_string<F::intern_type> from("some text"); in main()
|
/external/libcxx/src/ |
D | locale.cpp | 1444 const intern_type* frm, const intern_type*, const intern_type*& frm_nxt, in do_out() argument 1455 intern_type* to, intern_type*, intern_type*& to_nxt) const in do_in() argument 1522 const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, in do_out() 1526 const intern_type* fend = frm; in do_out() 1560 n = __libcpp_wcrtomb_l(tmp, intern_type(), &st, __l); in do_out() 1580 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in() 1649 size_t n = __libcpp_wcrtomb_l(tmp, intern_type(), &st, __l); in do_unshift() 3107 const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, in do_out() 3125 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in() 3184 const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, in do_out() [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/ |
D | types_wchar_t.pass.cpp | 33 static_assert((std::is_same<F::intern_type, wchar_t>::value), ""); in main()
|
D | types_char.pass.cpp | 33 static_assert((std::is_same<F::intern_type, char>::value), ""); in main()
|
D | types_char16_t.pass.cpp | 33 static_assert((std::is_same<F::intern_type, char16_t>::value), ""); in main()
|
D | types_char32_t.pass.cpp | 33 static_assert((std::is_same<F::intern_type, char32_t>::value), ""); in main()
|