Lines Matching refs:istreambuf_iterator
381 class istreambuf_iterator
393 istreambuf_iterator() noexcept;
394 istreambuf_iterator(istream_type& s) noexcept;
395 istreambuf_iterator(streambuf_type* s) noexcept;
396 istreambuf_iterator(a-private-type) noexcept;
400 istreambuf_iterator& operator++();
403 bool equal(const istreambuf_iterator& b) const;
407 bool operator==(const istreambuf_iterator<charT,traits>& a,
408 const istreambuf_iterator<charT,traits>& b);
410 bool operator!=(const istreambuf_iterator<charT,traits>& a,
411 const istreambuf_iterator<charT,traits>& b);
971 class _LIBCPP_TEMPLATE_VIS istreambuf_iterator
991 friend class istreambuf_iterator;
1004 … _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(nullptr) {}
1005 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT
1007 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT
1009 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(const __proxy& __p) _NOEXCEPT
1014 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator& operator++()
1024 _LIBCPP_INLINE_VISIBILITY bool equal(const istreambuf_iterator& __b) const
1030 bool operator==(const istreambuf_iterator<_CharT,_Traits>& __a,
1031 const istreambuf_iterator<_CharT,_Traits>& __b)
1036 bool operator!=(const istreambuf_iterator<_CharT,_Traits>& __a,
1037 const istreambuf_iterator<_CharT,_Traits>& __b)