Home
last modified time | relevance | path

Searched refs:istreambuf_iterator (Results 1 – 16 of 16) sorted by relevance

/src/contrib/llvm-project/libcxx/include/__iterator/
H A Distreambuf_iterator.h28 class _LIBCPP_TEMPLATE_VIS istreambuf_iterator
54 friend class istreambuf_iterator; variable
67 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(nullptr) {} in istreambuf_iterator() function
69 …_LIBCPP_HIDE_FROM_ABI constexpr istreambuf_iterator(default_sentinel_t) noexcept : istreambuf_iter… in istreambuf_iterator() function
71 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(istream_type& __s) _NOEXCEPT : __sbuf_(__s.rdbuf()) {} in istreambuf_iterator() function
72 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(streambuf_type* __s) _NOEXCEPT : __sbuf_(__s) {} in istreambuf_iterator() function
73 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(const __proxy& __p) _NOEXCEPT : __sbuf_(__p.__sbuf_) {} in istreambuf_iterator() function
76 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator& operator++() {
82 _LIBCPP_HIDE_FROM_ABI bool equal(const istreambuf_iterator& __b) const { in equal()
87 friend _LIBCPP_HIDE_FROM_ABI bool operator==(const istreambuf_iterator& __i, default_sentinel_t) {
[all …]
/src/contrib/llvm-project/libcxx/include/
H A Diterator578 class istreambuf_iterator
594 istreambuf_iterator() noexcept; // constexpr since C++11
595 constexpr istreambuf_iterator(default_sentinel_t) noexcept; // since C++20
596 istreambuf_iterator(istream_type& s) noexcept;
597 istreambuf_iterator(streambuf_type* s) noexcept;
598 istreambuf_iterator(a-private-type) noexcept;
602 istreambuf_iterator& operator++();
605 bool equal(const istreambuf_iterator& b) const;
606 friend bool operator==(const istreambuf_iterator& i, default_sentinel_t s); // since C++20
610 bool operator==(const istreambuf_iterator<charT,traits>& a,
[all …]
H A Diosfwd49 template <class charT, class traits = char_traits<charT> > class istreambuf_iterator;
127 class _LIBCPP_TEMPLATE_VIS istreambuf_iterator;
H A Diomanip239 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
336 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
H A Distream163 #include <__iterator/istreambuf_iterator.h>
320 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
359 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
440 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
H A Dlocale203 # include <__iterator/istreambuf_iterator.h>
593 template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> >
1549 template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> >
2066 template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> >
2401 template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> >
H A Dmodule.modulemap1419 …std_private_iterator_istreambuf_iterator [system] { header "__iterator/istreambuf_iterator.h" }
/src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.cpp63 return std::string((std::istreambuf_iterator<char>(T)), in FileToString()
64 std::istreambuf_iterator<char>()); in FileToString()
/src/contrib/llvm-project/libcxx/modules/std/
H A Diosfwd.inc26 using std::istreambuf_iterator;
H A Diterator.inc223 using std::istreambuf_iterator;
/src/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp94 std::copy(std::istreambuf_iterator<char>(ErrorFile), in RunProgramRemotelyWithTimeout()
95 std::istreambuf_iterator<char>(), in RunProgramRemotelyWithTimeout()
130 std::copy(std::istreambuf_iterator<char>(ErrorFile), in ProcessFailure()
131 std::istreambuf_iterator<char>(), in ProcessFailure()
/src/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp237 using InIt = istreambuf_iterator<char>;
/src/contrib/llvm-project/libcxx/include/__ostream/
H A Dbasic_ostream.h194 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
/src/lib/libc++/
H A DMakefile840 IT_HEADERS+= istreambuf_iterator.h
H A Dlibcxx.imp458 { include: [ "<__iterator/istreambuf_iterator.h>", "private", "<iterator>", "public" ] },
/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1847 SYMBOL(istreambuf_iterator, std::, <iterator>)
1848 SYMBOL(istreambuf_iterator, std::, <iosfwd>)