| /openbsd/src/gnu/gcc/libstdc++-v3/include/ext/ |
| D | codecvt_specializations.h | 243 typedef codecvt_base::result result; 312 codecvt_base::result 319 result __ret = codecvt_base::error; in do_out() 363 __ret = codecvt_base::ok; in do_out() 371 __ret = codecvt_base::partial; in do_out() 374 __ret = codecvt_base::error; in do_out() 381 codecvt_base::result 386 result __ret = codecvt_base::error; in do_unshift() 403 __ret = codecvt_base::noconv; in do_unshift() 405 __ret = codecvt_base::ok; in do_unshift() [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/ieee_1003.1-2001/ |
| D | codecvt_specializations.h | 186 typedef codecvt_base::result result; 256 codecvt_base::result 263 result __ret = codecvt_base::error; in do_out() 307 __ret = codecvt_base::ok; in do_out() 315 __ret = codecvt_base::partial; in do_out() 318 __ret = codecvt_base::error; in do_out() 325 codecvt_base::result 330 result __ret = codecvt_base::error; in do_unshift() 348 __ret = codecvt_base::noconv; in do_unshift() 350 __ret = codecvt_base::ok; in do_unshift() [all …]
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | __std_stream | 134 codecvt_base::result __r; 142 case _VSTD::codecvt_base::ok: 144 case codecvt_base::partial: 156 case codecvt_base::error: 158 case _VSTD::codecvt_base::noconv: 162 } while (__r == _VSTD::codecvt_base::partial); 200 case _VSTD::codecvt_base::ok: 202 case _VSTD::codecvt_base::noconv: 206 case codecvt_base::partial: 207 case codecvt_base::error: [all …]
|
| D | locale | 153 class codecvt_base; 3732 codecvt_base::result __r = codecvt_base::ok; 3747 __r = codecvt_base::error; 3749 else if (__r == codecvt_base::noconv) 3755 __r = codecvt_base::ok; 3757 else if (__r == codecvt_base::ok) 3762 else if (__r == codecvt_base::partial) 3770 } while (__r == codecvt_base::partial && __frm_nxt < __frm_end); 3772 if (__r == codecvt_base::ok) 3793 codecvt_base::result __r = codecvt_base::ok; [all …]
|
| D | __locale | 945 // codecvt_base 947 class _LIBCPP_TYPE_VIS codecvt_base 950 _LIBCPP_INLINE_VISIBILITY codecvt_base() {} 963 public codecvt_base 1050 public codecvt_base 1134 public codecvt_base 1222 public codecvt_base 1310 public codecvt_base 1398 public codecvt_base 1564 if (__r == codecvt_base::error || __wn == (const char16_t*)__wb) [all …]
|
| D | fstream | 765 codecvt_base::result __r; 778 if (__r == codecvt_base::noconv) 849 codecvt_base::result __r; 860 if (__r == codecvt_base::noconv) 866 else if (__r == codecvt_base::ok || __r == codecvt_base::partial) 871 if (__r == codecvt_base::partial) 879 } while (__r == codecvt_base::partial); 1010 codecvt_base::result __r; 1018 } while (__r == codecvt_base::partial); 1019 if (__r == codecvt_base::error)
|
| /openbsd/src/gnu/llvm/libcxx/src/ |
| D | locale.cpp | 1829 codecvt_base::result 1839 return codecvt_base::partial; in utf16_to_utf8() 1848 return codecvt_base::error; in utf16_to_utf8() 1852 return codecvt_base::partial; in utf16_to_utf8() 1858 return codecvt_base::partial; in utf16_to_utf8() 1865 return codecvt_base::partial; in utf16_to_utf8() 1873 return codecvt_base::partial; in utf16_to_utf8() 1876 return codecvt_base::error; in utf16_to_utf8() 1878 return codecvt_base::partial; in utf16_to_utf8() 1881 return codecvt_base::error; in utf16_to_utf8() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/bits/ |
| D | fstream.tcc | 212 codecvt_base::result __r = codecvt_base::ok; in underflow() 286 if (__r == codecvt_base::noconv) in underflow() 300 if (__r == codecvt_base::error) in underflow() 323 if (__r == codecvt_base::partial) in underflow() 327 else if (__r == codecvt_base::error) in underflow() 467 codecvt_base::result __r; in _M_convert_to_external() 471 if (__r == codecvt_base::ok || __r == codecvt_base::partial) in _M_convert_to_external() 473 else if (__r == codecvt_base::noconv) in _M_convert_to_external() 487 if (__r == codecvt_base::partial && __elen == __plen) in _M_convert_to_external() 494 if (__r != codecvt_base::error) in _M_convert_to_external() [all …]
|
| D | codecvt.h | 50 class codecvt_base in _GLIBCXX_BEGIN_NAMESPACE() 73 : public locale::facet, public codecvt_base 77 typedef codecvt_base::result result; 278 typedef codecvt_base::result result;
|
| D | localefwd.h | 120 class codecvt_base; variable
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/ |
| D | codecvt_members_unicode_char.cc | 124 typedef codecvt_base::result result; in test01() 164 VERIFY( r1 == codecvt_base::ok ); in test01() 174 VERIFY( r2 == codecvt_base::ok ); in test01() 184 VERIFY( r3 == codecvt_base::noconv ); in test01() 211 typedef codecvt_base::result result; in test02() 252 VERIFY( r1 == codecvt_base::ok ); in test02() 262 VERIFY( r2 == codecvt_base::ok ); in test02() 272 VERIFY( r3 == codecvt_base::noconv ); in test02()
|
| D | codecvt_members_char_char.cc | 31 typedef codecvt_base::result result; in test01() 55 VERIFY( r1 == codecvt_base::noconv ); in test01() 64 VERIFY( r2 == codecvt_base::noconv ); in test01() 72 VERIFY( r3 == codecvt_base::noconv ); in test01()
|
| D | codecvt_members_wchar_t_char.cc | 48 typedef codecvt_base::result result; in test01() 73 VERIFY( r1 == codecvt_base::ok ); in test01() 83 VERIFY( r2 == codecvt_base::ok ); in test01() 93 VERIFY( r3 == codecvt_base::noconv ); in test01()
|
| D | codecvt_members_unicode_wchar_t.cc | 99 typedef codecvt_base::result result; in test01() 149 VERIFY( r1 == codecvt_base::ok ); in test01() 169 VERIFY( r3 == codecvt_base::noconv ); in test01()
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/src/ |
| D | codecvt.cc | 55 codecvt_base::result 70 codecvt_base::result 79 codecvt_base::result 126 codecvt_base::result
|
| D | fstream.cc | 165 codecvt_base::result __r; in _M_underflow_common() 169 if (__r == codecvt_base::ok) in _M_underflow_common()
|
| /openbsd/src/gnu/gcc/libstdc++-v3/src/ |
| D | codecvt.cc | 57 codecvt_base::result 72 codecvt_base::result 81 codecvt_base::result 137 codecvt_base::result
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| D | fstream.tcc | 301 codecvt_base::result __r; in _M_convert_to_external() 305 if (__r == codecvt_base::ok || __r == codecvt_base::partial) in _M_convert_to_external() 307 else if (__r == codecvt_base::noconv) in _M_convert_to_external() 326 if (__r == codecvt_base::partial) in _M_convert_to_external() 332 if (__r != codecvt_base::error) in _M_convert_to_external()
|
| D | codecvt.h | 47 class codecvt_base 65 : public locale::facet, public codecvt_base 69 typedef codecvt_base::result result; 162 typedef codecvt_base::result result;
|
| D | localefwd.h | 120 class codecvt_base; variable
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/generic/ |
| D | codecvt_members.cc | 42 codecvt_base::result 71 codecvt_base::result
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/gnu/ |
| D | codecvt_members.cc | 43 codecvt_base::result 78 codecvt_base::result
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/generic/ |
| D | codecvt_members.cc | 42 codecvt_base::result in _GLIBCXX_BEGIN_NAMESPACE() 107 codecvt_base::result
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/gnu/ |
| D | codecvt_members.cc | 43 codecvt_base::result in _GLIBCXX_BEGIN_NAMESPACE() 118 codecvt_base::result
|
| /openbsd/src/gnu/llvm/lldb/source/Host/common/ |
| D | Editline.cpp | 1612 case std::codecvt_base::ok: in CompleteCharacter() 1615 case std::codecvt_base::error: in CompleteCharacter() 1616 case std::codecvt_base::noconv: in CompleteCharacter() 1619 case std::codecvt_base::partial: in CompleteCharacter()
|