Home
last modified time | relevance | path

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

/src/contrib/llvm-project/libcxx/src/filesystem/
H A Ddirectory_iterator.cpp38 …: __stream_(__ds.__stream_), __root_(std::move(__ds.__root_)), __entry_(std::move(__ds.__entry_)) { in __dir_stream()
39 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream()
43 : __stream_(INVALID_HANDLE_VALUE), __root_(root) { in __dir_stream()
48 __stream_ = ::FindFirstFileW((root / "*").c_str(), &__data_); in __dir_stream()
49 if (__stream_ == INVALID_HANDLE_VALUE) { in __dir_stream()
61 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream()
66 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; } in good()
69 while (::FindNextFileW(__stream_, &__data_)) { in advance()
93 if (!::FindClose(__stream_)) in close()
95 __stream_ = INVALID_HANDLE_VALUE; in close()
[all …]
/src/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()
/src/contrib/llvm-project/libcxx/include/
H A Diosfwd168 __stream_type& __stream_;
177 : __stream_(__stream), __fmtflags_(__stream.flags()), __fill_(__stream.fill()) {}
179 __stream_.flags(__fmtflags_);
180 __stream_.fill(__fill_);