Searched refs:__sbuf_ (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/libcxx/include/__iterator/
H A Distreambuf_iterator.h47 mutable streambuf_type* __sbuf_; member in class:istreambuf_iterator
52 streambuf_type* __sbuf_; member in class:istreambuf_iterator::__proxy
55 : __keep_(__c), __sbuf_(__s) {}
64 if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sgetc(), traits_type::eof()))
65 __sbuf_ = nullptr;
66 return __sbuf_ == nullptr;
69 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(nullptr) {} function in class:istreambuf_iterator
75 : __sbuf_(__s.rdbuf()) {} function in class:istreambuf_iterator
77 : __sbuf_(__ function in class:istreambuf_iterator
79 : __sbuf_(__p.__sbuf_) {} function in class:istreambuf_iterator
[all...]
H A Dostreambuf_iterator.h49 streambuf_type* __sbuf_; member in class:ostreambuf_iterator
52 : __sbuf_(__s.rdbuf()) {} function in class:ostreambuf_iterator
54 : __sbuf_(__s) {} function in class:ostreambuf_iterator
57 if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sputc(__c), traits_type::eof()))
58 __sbuf_ = nullptr;
64 _LIBCPP_INLINE_VISIBILITY bool failed() const _NOEXCEPT {return __sbuf_ == nullptr;}

Completed in 70 milliseconds