/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
H A D | copy.pass.cpp | 12 // 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 D | ostream_delim.pass.cpp | 12 // 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 D | ostream.pass.cpp | 12 // 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 D | dereference.pass.cpp | 12 // class ostream_iterator 14 // ostream_iterator& operator*() const; 23 std::ostream_iterator<int> i(os); 24 std::ostream_iterator<int>& iref = *i;
|
H A D | increment.pass.cpp | 12 // 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 D | assign_t.pass.cpp | 12 // 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 D | copy.pass.cpp | 12 // 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 D | ostream_delim.pass.cpp | 12 // 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 D | ostream.pass.cpp | 12 // 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 D | dereference.pass.cpp | 12 // class ostream_iterator 14 // ostream_iterator& operator*() const; 23 std::ostream_iterator<int> i(os); 24 std::ostream_iterator<int>& iref = *i;
|
H A D | increment.pass.cpp | 12 // 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 D | assign_t.pass.cpp | 12 // 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 D | stream_iterator.h | 154 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 D | stream_iterator.h | 154 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 D | stream_iterator.h | 154 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 D | types.pass.cpp | 14 // 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 D | types.pass.cpp | 14 // 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 D | transform_inclusive_scan_bop_uop.pass.cpp | 93 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 D | transform_inclusive_scan_bop_uop.pass.cpp | 93 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 D | validate.cpp | 44 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 D | validate.cpp | 44 using std::ostream_iterator; 281 transform(begin(ids), end(ids), ostream_iterator<string>(ss, " "),
|