Lines Matching refs:istreambuf_iterator
329 class istreambuf_iterator
341 istreambuf_iterator() noexcept;
342 istreambuf_iterator(istream_type& s) noexcept;
343 istreambuf_iterator(streambuf_type* s) noexcept;
344 istreambuf_iterator(a-private-type) noexcept;
348 istreambuf_iterator& operator++();
351 bool equal(const istreambuf_iterator& b) const;
355 bool operator==(const istreambuf_iterator<charT,traits>& a,
356 const istreambuf_iterator<charT,traits>& b);
358 bool operator!=(const istreambuf_iterator<charT,traits>& a,
359 const istreambuf_iterator<charT,traits>& b);
986 class _LIBCPP_TEMPLATE_VIS istreambuf_iterator
1006 friend class istreambuf_iterator;
1019 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(0) {}
1020 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT
1022 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT
1024 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(const __proxy& __p) _NOEXCEPT
1029 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator& operator++()
1039 _LIBCPP_INLINE_VISIBILITY bool equal(const istreambuf_iterator& __b) const
1045 bool operator==(const istreambuf_iterator<_CharT,_Traits>& __a,
1046 const istreambuf_iterator<_CharT,_Traits>& __b)
1051 bool operator!=(const istreambuf_iterator<_CharT,_Traits>& __a,
1052 const istreambuf_iterator<_CharT,_Traits>& __b)