Home
last modified time | relevance | path

Searched refs:__in (Results 1 – 25 of 26) sorted by relevance

12

/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/
Distream-string.cc43 operator>>(basic_istream<char>& __in, basic_string<char>& __str) in operator >>() argument
55 __istream_type::sentry __cerb(__in, false); in operator >>()
61 const streamsize __w = __in.width(); in operator >>()
64 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
66 __streambuf_type* __sb = __in.rdbuf(); in operator >>()
98 __in.width(0); in operator >>()
102 __in._M_setstate(ios_base::badbit); in operator >>()
110 __in._M_setstate(ios_base::badbit); in operator >>()
116 __in.setstate(__err); in operator >>()
117 return __in; in operator >>()
[all …]
Distream.cc197 operator>>(basic_istream<char>& __in, char* __s) in operator >>() argument
208 __istream_type::sentry __cerb(__in, false); in operator >>()
214 streamsize __num = __in.width(); in operator >>()
218 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
221 __streambuf_type* __sb = __in.rdbuf(); in operator >>()
259 __in.width(0); in operator >>()
263 __in._M_setstate(ios_base::badbit); in operator >>()
267 { __in._M_setstate(ios_base::badbit); } in operator >>()
272 __in.setstate(__err); in operator >>()
273 return __in; in operator >>()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
Dtuple223 _Tuple_impl(_Tuple_impl&& __in)
226 : _Inherited(std::move(_M_tail(__in))),
227 _Base(std::forward<_Head>(_M_head(__in))) { }
230 constexpr _Tuple_impl(const _Tuple_impl<_Idx, _UElements...>& __in)
231 : _Inherited(_Tuple_impl<_Idx, _UElements...>::_M_tail(__in)),
232 _Base(_Tuple_impl<_Idx, _UElements...>::_M_head(__in)) { }
235 constexpr _Tuple_impl(_Tuple_impl<_Idx, _UHead, _UTails...>&& __in)
237 (_Tuple_impl<_Idx, _UHead, _UTails...>::_M_tail(__in))),
239 (_Tuple_impl<_Idx, _UHead, _UTails...>::_M_head(__in))) { }
263 const _Tuple_impl& __in)
[all …]
Dutility216 get(std::pair<_Tp1, _Tp2>& __in) noexcept
217 { return __pair_get<_Int>::__get(__in); }
221 get(std::pair<_Tp1, _Tp2>&& __in) noexcept
222 { return __pair_get<_Int>::__move_get(std::move(__in)); }
226 get(const std::pair<_Tp1, _Tp2>& __in) noexcept
227 { return __pair_get<_Int>::__const_get(__in); }
231 get(const std::pair<_Tp1, _Tp2>&& __in) noexcept
232 { return __pair_get<_Int>::__const_move_get(std::move(__in)); }
Distream741 * @param __in An input stream.
752 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c);
756 operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
757 { return (__in >> reinterpret_cast<char&>(__c)); }
761 operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
762 { return (__in >> reinterpret_cast<char&>(__c)); }
768 * @param __in An input stream.
770 * @return __in
794 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s);
799 operator>>(basic_istream<char>& __in, char* __s);
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
Dtuple253 _Tuple_impl(_Tuple_impl&& __in)
256 : _Inherited(std::move(_M_tail(__in))),
257 _Base(std::forward<_Head>(_M_head(__in))) { }
260 constexpr _Tuple_impl(const _Tuple_impl<_Idx, _UElements...>& __in)
261 : _Inherited(_Tuple_impl<_Idx, _UElements...>::_M_tail(__in)),
262 _Base(_Tuple_impl<_Idx, _UElements...>::_M_head(__in)) { }
265 constexpr _Tuple_impl(_Tuple_impl<_Idx, _UHead, _UTails...>&& __in)
267 (_Tuple_impl<_Idx, _UHead, _UTails...>::_M_tail(__in))),
269 (_Tuple_impl<_Idx, _UHead, _UTails...>::_M_head(__in))) { }
293 const _Tuple_impl& __in)
[all …]
Dutility144 get(std::pair<_Tp1, _Tp2>& __in) noexcept
145 { return __pair_get<_Int>::__get(__in); }
149 get(std::pair<_Tp1, _Tp2>&& __in) noexcept
150 { return __pair_get<_Int>::__move_get(std::move(__in)); }
154 get(const std::pair<_Tp1, _Tp2>& __in) noexcept
155 { return __pair_get<_Int>::__const_get(__in); }
Distream710 * @param __in An input stream.
721 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c);
725 operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
726 { return (__in >> reinterpret_cast<char&>(__c)); }
730 operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
731 { return (__in >> reinterpret_cast<char&>(__c)); }
737 * @param __in An input stream.
739 * @return __in
763 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s);
768 operator>>(basic_istream<char>& __in, char* __s);
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++98/
Distream.cc198 operator>>(basic_istream<char>& __in, char* __s) in operator >>() argument
209 __istream_type::sentry __cerb(__in, false); in operator >>()
215 streamsize __num = __in.width(); in operator >>()
219 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
222 __streambuf_type* __sb = __in.rdbuf(); in operator >>()
260 __in.width(0); in operator >>()
264 __in._M_setstate(ios_base::badbit); in operator >>()
268 { __in._M_setstate(ios_base::badbit); } in operator >>()
273 __in.setstate(__err); in operator >>()
274 return __in; in operator >>()
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
Dtuple105 _Tuple_impl(const _Tuple_impl<_Idx, _UElements...>& __in)
106 : _Inherited(__in._M_tail()), _M_head(__in._M_head) { }
108 _Tuple_impl(const _Tuple_impl& __in)
109 : _Inherited(__in._M_tail()), _M_head(__in._M_head) { }
113 operator=(const _Tuple_impl<_Idx, _UElements...>& __in)
115 _M_head = __in._M_head;
116 _M_tail() = __in._M_tail();
121 operator=(const _Tuple_impl& __in)
123 _M_head = __in._M_head;
124 _M_tail() = __in._M_tail();
[all …]
Dutility97 get(std::pair<_Tp1, _Tp2>& __in)
98 { return __pair_get<_Int>::__get(__in); }
102 get(const std::pair<_Tp1, _Tp2>& __in)
103 { return __pair_get<_Int>::__const_get(__in); }
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
Dtuple105 _Tuple_impl(const _Tuple_impl<_Idx, _UElements...>& __in)
106 : _Inherited(__in._M_tail()), _M_head(__in._M_head) { }
108 _Tuple_impl(const _Tuple_impl& __in)
109 : _Inherited(__in._M_tail()), _M_head(__in._M_head) { }
113 operator=(const _Tuple_impl<_Idx, _UElements...>& __in)
115 _M_head = __in._M_head;
116 _M_tail() = __in._M_tail();
121 operator=(const _Tuple_impl& __in)
123 _M_head = __in._M_head;
124 _M_tail() = __in._M_tail();
[all …]
Dutility96 get(std::pair<_Tp1, _Tp2>& __in)
97 { return __pair_get<_Int>::__get(__in); }
101 get(const std::pair<_Tp1, _Tp2>& __in)
102 { return __pair_get<_Int>::__const_get(__in); }
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Distream.tcc47 sentry(basic_istream<_CharT, _Traits>& __in, bool __noskip) : _M_ok(false) in sentry() argument
50 if (__in.good()) in sentry()
53 if (__in.tie()) in sentry()
54 __in.tie()->flush(); in sentry()
55 if (!__noskip && bool(__in.flags() & ios_base::skipws)) in sentry()
58 __streambuf_type* __sb = __in.rdbuf(); in sentry()
61 const __ctype_type& __ct = __check_facet(__in._M_ctype); in sentry()
76 __in._M_setstate(ios_base::badbit); in sentry()
80 { __in._M_setstate(ios_base::badbit); } in sentry()
82 if (__in.good() && __err == ios_base::goodbit) in sentry()
[all …]
Dlocale_facets.h1999 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2001 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2036 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2038 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2041 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2043 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2046 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2048 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2051 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2053 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
[all …]
Dbasic_string.tcc1465 operator>>(basic_istream<_CharT, _Traits>& __in, in operator >>() argument
1478 typename __istream_type::sentry __cerb(__in, false); in operator >>()
1487 const streamsize __w = __in.width(); in operator >>()
1490 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
1492 __int_type __c = __in.rdbuf()->sgetc(); in operator >>()
1506 __c = __in.rdbuf()->snextc(); in operator >>()
1512 __in.width(0); in operator >>()
1516 __in._M_setstate(__ios_base::badbit); in operator >>()
1524 __in._M_setstate(__ios_base::badbit); in operator >>()
1531 __in.setstate(__err); in operator >>()
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
Distream.tcc49 sentry(basic_istream<_CharT, _Traits>& __in, bool __noskip) : _M_ok(false) in sentry() argument
52 if (__in.good()) in sentry()
54 if (__in.tie()) in sentry()
55 __in.tie()->flush(); in sentry()
56 if (!__noskip && bool(__in.flags() & ios_base::skipws)) in sentry()
59 __streambuf_type* __sb = __in.rdbuf(); in sentry()
62 const __ctype_type& __ct = __check_facet(__in._M_ctype); in sentry()
76 if (__in.good() && __err == ios_base::goodbit) in sentry()
81 __in.setstate(__err); in sentry()
925 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c) in operator >>() argument
[all …]
Dlocale_facets.h1964 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
1966 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2000 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2002 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2005 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2007 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2010 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2012 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
2015 get(iter_type __in, iter_type __end, ios_base& __io, in _GLIBCXX_VISIBILITY()
2017 { return this->do_get(__in, __end, __io, __err, __v); } in _GLIBCXX_VISIBILITY()
[all …]
Dbasic_string.tcc998 operator>>(basic_istream<_CharT, _Traits>& __in, in operator >>() argument
1011 typename __istream_type::sentry __cerb(__in, false); in operator >>()
1020 const streamsize __w = __in.width(); in operator >>()
1023 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
1025 __int_type __c = __in.rdbuf()->sgetc(); in operator >>()
1039 __c = __in.rdbuf()->snextc(); in operator >>()
1045 __in.width(0); in operator >>()
1049 __in._M_setstate(__ios_base::badbit); in operator >>()
1057 __in._M_setstate(__ios_base::badbit); in operator >>()
1064 __in.setstate(__err); in operator >>()
[all …]
Dbasic_string.h2796 getline(basic_istream<char>& __in, basic_string<char>& __str, in _GLIBCXX_VISIBILITY()
2802 getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str, in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/
Dvstring.tcc552 operator>>(basic_istream<_CharT, _Traits>& __in, in operator >>() argument
567 typename __istream_type::sentry __cerb(__in, false); in operator >>()
576 const streamsize __w = __in.width(); in operator >>()
579 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
581 __int_type __c = __in.rdbuf()->sgetc(); in operator >>()
595 __c = __in.rdbuf()->snextc(); in operator >>()
601 __in.width(0); in operator >>()
605 __in._M_setstate(__ios_base::badbit); in operator >>()
613 __in._M_setstate(__ios_base::badbit); in operator >>()
620 __in.setstate(__err); in operator >>()
[all …]
Drandom.tcc210 inline void __rshift(uint32_t *__out, const uint32_t *__in) in __rshift() argument
212 uint64_t __th = ((static_cast<uint64_t>(__in[3]) << 32) in __rshift()
213 | static_cast<uint64_t>(__in[2])); in __rshift()
214 uint64_t __tl = ((static_cast<uint64_t>(__in[1]) << 32) in __rshift()
215 | static_cast<uint64_t>(__in[0])); in __rshift()
228 inline void __lshift(uint32_t *__out, const uint32_t *__in) in __lshift() argument
230 uint64_t __th = ((static_cast<uint64_t>(__in[3]) << 32) in __lshift()
231 | static_cast<uint64_t>(__in[2])); in __lshift()
232 uint64_t __tl = ((static_cast<uint64_t>(__in[1]) << 32) in __lshift()
233 | static_cast<uint64_t>(__in[0])); in __lshift()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/
Dvstring.tcc552 operator>>(basic_istream<_CharT, _Traits>& __in, in operator >>() argument
567 typename __istream_type::sentry __cerb(__in, false); in operator >>()
576 const streamsize __w = __in.width(); in operator >>()
579 const __ctype_type& __ct = use_facet<__ctype_type>(__in.getloc()); in operator >>()
581 __int_type __c = __in.rdbuf()->sgetc(); in operator >>()
595 __c = __in.rdbuf()->snextc(); in operator >>()
601 __in.width(0); in operator >>()
605 __in._M_setstate(__ios_base::badbit); in operator >>()
613 __in._M_setstate(__ios_base::badbit); in operator >>()
620 __in.setstate(__err); in operator >>()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr2/
Dbool_set142 operator>>(std::basic_istream<CharT, Traits>& __in, bool_set& __b)
145 __in >> __c;
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr2/
Dbool_set142 operator>>(std::basic_istream<CharT, Traits>& __in, bool_set& __b)
145 __in >> __c;

12