Searched refs:ostream_iterator (Results 1 - 21 of 21) sorted by relevance

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
H A Dcopy.pass.cpp12 // class ostream_iterator
14 // ostream_iterator(const ostream_iterator& x);
23 std::ostream_iterator<int> i(outf);
24 std::ostream_iterator<int> j = i;
H A Dostream_delim.pass.cpp12 // class ostream_iterator
14 // ostream_iterator(ostream_type& s, const charT* delimiter);
32 std::ostream_iterator<int> i(outf, ", ");
37 std::ostream_iterator<double, wchar_t> i(outf, L", ");
42 std::ostream_iterator<int, char, MyTraits> i(outf, ", ");
H A Dostream.pass.cpp12 // class ostream_iterator
14 // ostream_iterator(ostream_type& s);
31 std::ostream_iterator<int> i(outf);
36 std::ostream_iterator<int, char, MyTraits> i(outf);
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
H A Ddereference.pass.cpp12 // class ostream_iterator
14 // ostream_iterator& operator*() const;
23 std::ostream_iterator<int> i(os);
24 std::ostream_iterator<int>& iref = *i;
H A Dincrement.pass.cpp12 // class ostream_iterator
14 // ostream_iterator& operator++();
15 // ostream_iterator& operator++(int);
24 std::ostream_iterator<int> i(os);
25 std::ostream_iterator<int>& iref1 = ++i;
27 std::ostream_iterator<int>& iref2 = i++;
H A Dassign_t.pass.cpp12 // class ostream_iterator
14 // ostream_iterator& operator=(const T& value);
32 std::ostream_iterator<int> i(outf);
38 std::ostream_iterator<int> i(outf, ", ");
44 std::ostream_iterator<int, wchar_t> i(outf);
50 std::ostream_iterator<int, wchar_t> i(outf, L", ");
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
H A Dcopy.pass.cpp12 // class ostream_iterator
14 // ostream_iterator(const ostream_iterator& x);
23 std::ostream_iterator<int> i(outf);
24 std::ostream_iterator<int> j = i;
H A Dostream_delim.pass.cpp12 // class ostream_iterator
14 // ostream_iterator(ostream_type& s, const charT* delimiter);
32 std::ostream_iterator<int> i(outf, ", ");
37 std::ostream_iterator<double, wchar_t> i(outf, L", ");
42 std::ostream_iterator<int, char, MyTraits> i(outf, ", ");
H A Dostream.pass.cpp12 // class ostream_iterator
14 // ostream_iterator(ostream_type& s);
31 std::ostream_iterator<int> i(outf);
36 std::ostream_iterator<int, char, MyTraits> i(outf);
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
H A Ddereference.pass.cpp12 // class ostream_iterator
14 // ostream_iterator& operator*() const;
23 std::ostream_iterator<int> i(os);
24 std::ostream_iterator<int>& iref = *i;
H A Dincrement.pass.cpp12 // class ostream_iterator
14 // ostream_iterator& operator++();
15 // ostream_iterator& operator++(int);
24 std::ostream_iterator<int> i(os);
25 std::ostream_iterator<int>& iref1 = ++i;
27 std::ostream_iterator<int>& iref2 = i++;
H A Dassign_t.pass.cpp12 // class ostream_iterator
14 // ostream_iterator& operator=(const T& value);
32 std::ostream_iterator<int> i(outf);
38 std::ostream_iterator<int> i(outf, ", ");
44 std::ostream_iterator<int, wchar_t> i(outf);
50 std::ostream_iterator<int, wchar_t> i(outf, L", ");
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
H A Dstream_iterator.h154 class ostream_iterator class in inherits:iterator
171 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {} function in class:ostream_iterator
183 ostream_iterator(ostream_type& __s, const _CharT* __c) function in class:ostream_iterator
187 ostream_iterator(const ostream_iterator& __obj) function in class:ostream_iterator
192 ostream_iterator&
203 ostream_iterator&
207 ostream_iterator&
211 ostream_iterator&
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/bits/
H A Dstream_iterator.h154 class ostream_iterator class in inherits:iterator
171 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {} function in class:ostream_iterator
183 ostream_iterator(ostream_type& __s, const _CharT* __c) function in class:ostream_iterator
187 ostream_iterator(const ostream_iterator& __obj) function in class:ostream_iterator
192 ostream_iterator&
203 ostream_iterator&
207 ostream_iterator&
211 ostream_iterator&
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
H A Dstream_iterator.h154 class ostream_iterator class in inherits:iterator
171 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {} function in class:ostream_iterator
183 ostream_iterator(ostream_type& __s, const _CharT* __c) function in class:ostream_iterator
187 ostream_iterator(const ostream_iterator& __obj) function in class:ostream_iterator
192 ostream_iterator&
203 ostream_iterator&
207 ostream_iterator&
211 ostream_iterator&
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/
H A Dtypes.pass.cpp14 // class ostream_iterator
30 typedef std::ostream_iterator<double> I1;
44 typedef std::ostream_iterator<unsigned, wchar_t> I2;
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/
H A Dtypes.pass.cpp14 // class ostream_iterator
30 typedef std::ostream_iterator<double> I1;
44 typedef std::ostream_iterator<unsigned, wchar_t> I2;
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/transform.inclusive.scan/
H A Dtransform_inclusive_scan_bop_uop.pass.cpp93 std::copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " "));
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/transform.inclusive.scan/
H A Dtransform_inclusive_scan_bop_uop.pass.cpp93 std::copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " "));
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dvalidate.cpp44 using std::ostream_iterator;
281 transform(begin(ids), end(ids), ostream_iterator<string>(ss, " "),
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dvalidate.cpp44 using std::ostream_iterator;
281 transform(begin(ids), end(ids), ostream_iterator<string>(ss, " "),

Completed in 459 milliseconds