Home
last modified time | relevance | path

Searched refs:ostreambuf_iterator (Results 1 – 25 of 33) sorted by relevance

12

/llvm-project-15.0.7/libcxx/include/__iterator/
H A Dostreambuf_iterator.h27 class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator
51 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT in ostreambuf_iterator() function
53 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT in ostreambuf_iterator() function
55 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c)
61 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*() {return *this;}
62 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++() {return *this;}
63 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;}
69 ostreambuf_iterator<_Ch, _Tr>
70 __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
H A Dincrement.pass.cpp26 std::ostreambuf_iterator<char> i(outf); in main()
27 std::ostreambuf_iterator<char>& iref = ++i; in main()
29 std::ostreambuf_iterator<char>& iref2 = i++; in main()
35 std::ostreambuf_iterator<wchar_t> i(outf); in main()
36 std::ostreambuf_iterator<wchar_t>& iref = ++i; in main()
38 std::ostreambuf_iterator<wchar_t>& iref2 = i++; in main()
H A Dderef.pass.cpp25 std::ostreambuf_iterator<char> i(outf); in main()
26 std::ostreambuf_iterator<char>& iref = *i; in main()
32 std::ostreambuf_iterator<wchar_t> i(outf); in main()
33 std::ostreambuf_iterator<wchar_t>& iref = *i; in main()
H A Dassign_c.pass.cpp26 std::ostreambuf_iterator<char> i(outf); in main()
35 std::ostreambuf_iterator<wchar_t> i(outf); in main()
H A Dfailed.pass.cpp34 std::ostreambuf_iterator<char> i(&buf); in main()
41 std::ostreambuf_iterator<wchar_t> i(&buf); in main()
/llvm-project-15.0.7/libcxx/test/libcxx/iterators/iterator.requirements/iterator.assoc.types/iterator.traits/
H A Dlocale_dependent.compile.pass.cpp20 static_assert(std::__iterator_traits_detail::__cpp17_iterator<std::ostreambuf_iterator<int, std::os…
25 static_assert(!std::__iterator_traits_detail::__cpp17_input_iterator<std::ostreambuf_iterator<int, …
32 static_assert(!std::__iterator_traits_detail::__cpp17_forward_iterator<std::ostreambuf_iterator<int…
41 …!std::__iterator_traits_detail::__cpp17_bidirectional_iterator<std::ostreambuf_iterator<int, std::…
50 …!std::__iterator_traits_detail::__cpp17_random_access_iterator<std::ostreambuf_iterator<int, std::…
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/
H A Dearly-if-conversion-bug1.ll71 %retval = alloca %"class.std::__1::ostreambuf_iterator", align 4
72 %__s = alloca %"class.std::__1::ostreambuf_iterator", align 4
85 …%coerce.dive = getelementptr %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
93 …uf_ = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
145 …f_9 = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
165 …_13 = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
207 …_18 = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
295 …_23 = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
340 …_31 = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
360 …_35 = getelementptr inbounds %"class.std::__1::ostreambuf_iterator", %"class.std::__1::ostreambuf_…
[all …]
/llvm-project-15.0.7/libcxx/test/libcxx/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
H A Dfailed.pass.cpp25 std::ostreambuf_iterator<char> i(nullptr); in main()
30 std::ostreambuf_iterator<wchar_t> i(nullptr); in main()
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/
H A Dostream.pass.cpp25 std::ostreambuf_iterator<char> i(outf); in main()
31 std::ostreambuf_iterator<wchar_t> i(outf); in main()
H A Dstreambuf.pass.cpp25 std::ostreambuf_iterator<char> i(outf.rdbuf()); in main()
31 std::ostreambuf_iterator<wchar_t> i(outf.rdbuf()); in main()
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/
H A Dtypes.pass.cpp31 …static_assert((std::is_same<std::time_put<char>::iter_type, std::ostreambuf_iterator<char> >::valu… in main()
32 …static_assert((std::is_same<std::time_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> >… in main()
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/
H A Dtypes.pass.cpp29 …static_assert((std::is_same<std::num_put<char>::iter_type, std::ostreambuf_iterator<char> >::value… in main()
34 …static_assert((std::is_same<std::num_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> >:… in main()
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/
H A Dtypes.pass.cpp29 …static_assert((std::is_same<std::money_put<char>::iter_type, std::ostreambuf_iterator<char> >::val… in main()
35 …static_assert((std::is_same<std::money_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> … in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.forward/
H A Diosfwd.pass.cpp117 test<std::ostreambuf_iterator<char>* >(); in main()
119 test<std::ostreambuf_iterator<wchar_t>* >(); in main()
121 test<std::ostreambuf_iterator<unsigned short>*>(); in main()
/llvm-project-15.0.7/libcxx/include/
H A Dostream370 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
415 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
442 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
471 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
498 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
527 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
553 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
762 typedef ostreambuf_iterator<_CharT, _Traits> _Ip;
803 typedef ostreambuf_iterator<_CharT, _Traits> _Ip;
863 typedef ostreambuf_iterator<_CharT, _Traits> _Ip;
[all …]
H A Diterator612 class ostreambuf_iterator
628 ostreambuf_iterator(ostream_type& s) noexcept;
629 ostreambuf_iterator(streambuf_type* s) noexcept;
630 ostreambuf_iterator& operator=(charT c);
631 ostreambuf_iterator& operator*();
632 ostreambuf_iterator& operator++();
633 ostreambuf_iterator& operator++(int);
707 #include <__iterator/ostreambuf_iterator.h>
H A Diosfwd51 template <class charT, class traits = char_traits<charT> > class ostreambuf_iterator;
160 class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator;
H A Diomanip371 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
491 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
H A Dtypes.pass.cpp39 typedef std::ostreambuf_iterator<char> I1; in main()
61 typedef std::ostreambuf_iterator<wchar_t> I2; in main()
H A Diterator_concept_conformance.compile.pass.cpp18 using iterator = std::ostreambuf_iterator<char>;
/llvm-project-15.0.7/llvm/test/Transforms/Inline/
H A D2006-01-14-CallGraphUpdate.ll11 …%"struct.std::ostreambuf_iterator<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basi…
13 …ratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl(%"struct.std::ostreambuf_iterator<wchar_t,std…
/llvm-project-15.0.7/clang/test/Parser/
H A Dcxx-member-crash.cpp10 template<typename _CharT, typename _Traits = char_traits<_CharT> > class ostreambuf_iterator;
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/
H A Dsymbolized-disassembly.test38 …1::ostreambuf_iterator<char, std::__1::char_traits<char>> std::__1::__pad_and_output<char, std::__…
/llvm-project-15.0.7/llvm/tools/bugpoint/
H A DToolRunner.cpp96 std::ostreambuf_iterator<char>(OS)); in RunProgramRemotelyWithTimeout()
132 std::ostreambuf_iterator<char>(OS)); in ProcessFailure()
/llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/
H A Ddbginfo.ll45 …%"struct.std::num_put<char,std::ostreambuf_iterator<char, std::char_traits<char> > >" = type { %"s…

12