Home
last modified time | relevance | path

Searched refs:state_type (Results 1 – 25 of 27) sorted by relevance

12

/llvm-project-15.0.7/libcxx/include/
H A Dcodecvt91 typedef mbstate_t state_type;
102 do_out(state_type& __st,
106 do_in(state_type& __st,
130 typedef mbstate_t state_type;
141 do_out(state_type& __st,
145 do_in(state_type& __st,
179 do_out(state_type& __st,
183 do_in(state_type& __st,
243 do_in(state_type& __st,
282 do_in(state_type& __st,
[all …]
H A D__std_stream43 typedef typename traits_type::state_type state_type;
45 __stdinbuf(FILE* __fp, state_type* __st);
56 const codecvt<char_type, char, state_type>* __cv_;
57 state_type* __st_;
70 __stdinbuf<_CharT>::__stdinbuf(FILE* __fp, state_type* __st)
137 state_type __sv_st = *__st_;
231 typedef typename traits_type::state_type state_type;
233 __stdoutbuf(FILE* __fp, state_type* __st);
243 const codecvt<char_type, char, state_type>* __cv_;
244 state_type* __st_;
[all …]
H A D__locale971 result out(state_type& __st,
986 result in(state_type& __st,
1057 result out(state_type& __st,
1072 result in(state_type& __st,
1142 result out(state_type& __st,
1157 result in(state_type& __st,
1230 result out(state_type& __st,
1245 result in(state_type& __st,
1318 result out(state_type& __st,
1333 result in(state_type& __st,
[all …]
H A Diosfwd87 using streampos = fpos<char_traits<char>::state_type>;
88 using wstreampos = fpos<char_traits<wchar_t>::state_type>;
89 using u8streampos = fpos<char_traits<char8_t>::state_type>; // C++20
90 using u16streampos = fpos<char_traits<char16_t>::state_type>;
91 using u32streampos = fpos<char_traits<char32_t>::state_type>;
H A Dlocale92 typedef typename Codecvt::state_type state_type;
118 state_type state() const;
126 typedef typename Tr::state_type state_type;
129 state_type state = state_type()); // before C++14
131 state_type state = state_type()); // before C++20
134 state_type state = state_type()); // C++20
3626 typedef typename _Codecvt::state_type state_type;
3900 typedef typename _Codecvt::state_type state_type;
3912 state_type __st_;
3926 state_type __state = state_type());
[all …]
H A Dfstream224 typedef typename traits_type::state_type state_type;
282 const codecvt<char_type, char, state_type>* __cv_;
283 state_type __st_;
284 state_type __st_last_;
313 if (has_facet<codecvt<char_type, char, state_type> >(this->getloc()))
315 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(this->getloc());
375 __rhs.__st_ = state_type();
376 __rhs.__st_last_ = state_type();
1022 state_type __state = __st_last_;
1065 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DDFAEmitter.h44 using state_type = uint64_t;
51 void addTransition(state_type From, state_type To, action_type A);
67 using DfaState = SmallVector<state_type, 4>;
76 using DfaTransitionInfo = SmallVector<std::pair<state_type, state_type>, 4>;
83 std::map<std::pair<state_type, action_type>, std::vector<state_type>>
85 std::set<state_type> NfaStates;
H A DDFAEmitter.cpp48 void DfaEmitter::addTransition(state_type From, state_type To, action_type A) { in addTransition()
63 for (state_type FromState : DS) { in visitDfaState()
69 for (state_type &ToState : I->second) { in visitDfaState()
/llvm-project-15.0.7/libcxx/src/
H A Dlocale.cpp1561 codecvt<char, char, mbstate_t>::do_in(state_type&, in do_in() argument
3530 __codecvt_utf8<wchar_t>::do_out(state_type&, in do_out() argument
3559 __codecvt_utf8<wchar_t>::do_in(state_type&, in do_in() argument
3585 __codecvt_utf8<wchar_t>::do_unshift(state_type&, in do_unshift() argument
3605 __codecvt_utf8<wchar_t>::do_length(state_type&, in do_length() argument
3636 __codecvt_utf8<char16_t>::do_out(state_type&, in do_out() argument
3654 __codecvt_utf8<char16_t>::do_in(state_type&, in do_in() argument
3692 __codecvt_utf8<char16_t>::do_length(state_type&, in do_length() argument
3713 __codecvt_utf8<char32_t>::do_out(state_type&, in do_out() argument
3731 __codecvt_utf8<char32_t>::do_in(state_type&, in do_in() argument
[all …]
/llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.capacity/
H A Dshrink_to_fit.explicit_instantiation.sh.cpp31 typedef std::mbstate_t state_type; typedef
32 typedef std::fpos<state_type> pos_type;
/llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
H A Dtypes.pass.cpp37 static_assert((std::is_same<myconv::state_type, std::mbstate_t>::value), ""); in main()
/llvm-project-15.0.7/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
H A Dtypes.pass.cpp30 static_assert((std::is_same<std::char_traits<char>::state_type, std::mbstate_t>::value), ""); in main()
/llvm-project-15.0.7/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
H A Dtypes.pass.cpp32 static_assert((std::is_same<std::char_traits<wchar_t>::state_type, std::mbstate_t>::value), ""); in main()
/llvm-project-15.0.7/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
H A Dtypes.compile.pass.cpp27 static_assert((std::is_same<std::char_traits<char32_t>::state_type, std::mbstate_t>::value), "");
/llvm-project-15.0.7/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char8_t/
H A Dtypes.pass.cpp33 static_assert((std::is_same<std::char_traits<char8_t>::state_type, std::mbstate_t>::value), ""); in main()
/llvm-project-15.0.7/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
H A Dtypes.pass.cpp31 … static_assert((std::is_same<std::char_traits<char16_t>::state_type, std::mbstate_t>::value), ""); in main()
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/
H A Dtypes_char16_t_char8_t.pass.cpp39 static_assert(std::is_same_v<F::state_type, std::mbstate_t>); in main()
H A Dtypes_char32_t_char8_t.pass.cpp39 static_assert(std::is_same_v<F::state_type, std::mbstate_t>); in main()
H A Dtypes_char16_t.pass.cpp39 static_assert((std::is_same<F::state_type, std::mbstate_t>::value), ""); in main()
H A Dtypes_wchar_t.pass.cpp38 static_assert((std::is_same<F::state_type, std::mbstate_t>::value), ""); in main()
H A Dtypes_char32_t.pass.cpp39 static_assert((std::is_same<F::state_type, std::mbstate_t>::value), ""); in main()
H A Dtypes_char.pass.cpp36 static_assert((std::is_same<F::state_type, std::mbstate_t>::value), ""); in main()
/llvm-project-15.0.7/libcxx/include/__string/
H A Dchar_traits.h46 typedef mbstate_t state_type; typedef
195 typedef mbstate_t state_type;
309 typedef mbstate_t state_type;
425 typedef mbstate_t state_type;
526 typedef mbstate_t state_type;
617 typedef mbstate_t state_type;
/llvm-project-15.0.7/libcxx/test/std/strings/basic.string.hash/
H A Dchar_type_hash.fail.cpp28 typedef std::mbstate_t state_type; typedef
/llvm-project-15.0.7/libcxx/test/std/strings/string.view/string.view.hash/
H A Dchar_type.hash.fail.cpp28 typedef std::mbstate_t state_type; typedef

12