Home
last modified time | relevance | path

Searched refs:ostream_iterator (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__iterator/
H A Dostream_iterator.h28 class _LIBCPP_TEMPLATE_VIS ostream_iterator
52 _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s) _NOEXCEPT in ostream_iterator() function
54 … _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT in ostream_iterator() function
56 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator=(const _Tp& __value)
64 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator*() {return *this;}
65 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++() {return *this;}
66 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++(int) {return *this;}
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
H A Dassign_t.pass.cpp28 std::ostream_iterator<int> i(outf); in main()
34 std::ostream_iterator<int> i(outf, ", "); in main()
41 std::ostream_iterator<int, wchar_t> i(outf); in main()
47 std::ostream_iterator<int, wchar_t> i(outf, L", "); in main()
H A Dincrement.pass.cpp25 std::ostream_iterator<int> i(os); in main()
26 std::ostream_iterator<int>& iref1 = ++i; in main()
28 std::ostream_iterator<int>& iref2 = i++; in main()
H A Ddereference.pass.cpp24 std::ostream_iterator<int> i(os); in main()
25 std::ostream_iterator<int>& iref = *i; in main()
/llvm-project-15.0.7/libcxx/test/libcxx/iterators/iterator.requirements/iterator.assoc.types/iterator.traits/
H A Dlocale_dependent.compile.pass.cpp19 static_assert(std::__iterator_traits_detail::__cpp17_iterator<std::ostream_iterator<int, std::ostre…
24 static_assert(!std::__iterator_traits_detail::__cpp17_input_iterator<std::ostream_iterator<int, std…
31 static_assert(!std::__iterator_traits_detail::__cpp17_forward_iterator<std::ostream_iterator<int, s…
39 …!std::__iterator_traits_detail::__cpp17_bidirectional_iterator<std::ostream_iterator<int, std::ost…
48 …!std::__iterator_traits_detail::__cpp17_random_access_iterator<std::ostream_iterator<int, std::ost…
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
H A Dostream_delim.pass.cpp33 std::ostream_iterator<int> i(outf, ", "); in main()
39 std::ostream_iterator<double, wchar_t> i(outf, L", "); in main()
45 std::ostream_iterator<int, char, MyTraits> i(outf, ", "); in main()
H A Dcopy.pass.cpp24 std::ostream_iterator<int> i(outf); in main()
25 std::ostream_iterator<int> j = i; in main()
H A Dostream.pass.cpp32 std::ostream_iterator<int> i(outf); in main()
37 std::ostream_iterator<int, char, MyTraits> i(outf); in main()
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
H A Dtypes.pass.cpp38 typedef std::ostream_iterator<double> I1; in main()
59 typedef std::ostream_iterator<unsigned, wchar_t> I2; in main()
H A Diterator_concept_conformance.compile.pass.cpp17 using iterator = std::ostream_iterator<int, std::ostream>;
/llvm-project-15.0.7/libcxx/include/
H A Diterator546 class ostream_iterator
561 ostream_iterator(ostream_type& s);
562 ostream_iterator(ostream_type& s, const charT* delimiter);
563 ostream_iterator(const ostream_iterator& x);
564 ~ostream_iterator();
565 ostream_iterator& operator=(const T& value);
567 ostream_iterator& operator*();
568 ostream_iterator& operator++();
569 ostream_iterator& operator++(int);
706 #include <__iterator/ostream_iterator.h>
H A DCMakeLists.txt365 __iterator/ostream_iterator.h
H A Dmodule.modulemap.in781 module ostream_iterator { private header "__iterator/ostream_iterator.h" }
/llvm-project-15.0.7/libcxx/test/std/iterators/iterator.primitives/iterator.traits/
H A Dcxx20_iterator_traits.compile.pass.cpp153 static_assert(testIOIterator<std::ostream_iterator<int, char>, std::output_iterator_tag>());
/llvm-project-15.0.7/libcxx/docs/Status/
H A DRangesPaper.csv95 | `Updates to ostream_iterator <https://llvm.org/D103273>`_
H A DCxx17Issues.csv124 "`2576 <https://wg21.link/LWG2576>`__","``istream_iterator``\ and ``ostream_iterator``\ should us…
/llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn426 "__iterator/ostream_iterator.h",
/llvm-project-15.0.7/pstl/test/support/
H A Dutils.h464 std::copy(begin(), end(), std::ostream_iterator<T>(std::cout, " ")); in print()
/llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc861 SYMBOL(ostream_iterator, std::, <iterator>)