Home
last modified time | relevance | path

Searched refs:__stream_ (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Ddirectory_iterator.cpp39 …: __stream_(__ds.__stream_), __root_(std::move(__ds.__root_)), __entry_(std::move(__ds.__entry_)) { in __dir_stream()
40 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream()
44 : __stream_(INVALID_HANDLE_VALUE), __root_(root) { in __dir_stream()
49 __stream_ = ::FindFirstFileW((root / "*").c_str(), &__data_); in __dir_stream()
50 if (__stream_ == INVALID_HANDLE_VALUE) { in __dir_stream()
62 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream()
67 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; } in good()
70 while (::FindNextFileW(__stream_, &__data_)) { in advance()
94 if (!::FindClose(__stream_)) in close()
96 __stream_ = INVALID_HANDLE_VALUE; in close()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Distream_view.h47 : __stream_(std::addressof(__stream)) {} in basic_istream_view()
50 *__stream_ >> __value_; in begin()
57 basic_istream<_CharT, _Traits>* __stream_;
79 *__parent_->__stream_ >> __parent_->__value_;
95 return __parent_->__stream_; in __get_parent_stream()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Diosfwd148 __stream_type& __stream_;
157 : __stream_(__stream), __fmtflags_(__stream.flags()), __fill_(__stream.fill()) {}
159 __stream_.flags(__fmtflags_);
160 __stream_.fill(__fill_);
/freebsd/contrib/llvm-project/libcxx/include/
H A Diosfwd171 __stream_type& __stream_;
180 : __stream_(__stream), __fmtflags_(__stream.flags()), __fill_(__stream.fill()) {}
182 __stream_.flags(__fmtflags_);
183 __stream_.fill(__fill_);