/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/ |
D | assign_t.pass.cpp | 23 std::ostringstream outf; in main() local 24 std::ostream_iterator<int> i(outf); in main() 26 assert(outf.str() == "2"); in main() 29 std::ostringstream outf; in main() local 30 std::ostream_iterator<int> i(outf, ", "); in main() 32 assert(outf.str() == "2, "); in main() 35 std::wostringstream outf; in main() local 36 std::ostream_iterator<int, wchar_t> i(outf); in main() 38 assert(outf.str() == L"2"); in main() 41 std::wostringstream outf; in main() local [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/ |
D | assign_c.pass.cpp | 24 std::ostringstream outf; in main() local 25 std::ostreambuf_iterator<char> i(outf); in main() 27 assert(outf.str() == "a"); in main() 29 assert(outf.str() == "ab"); in main() 32 std::wostringstream outf; in main() local 33 std::ostreambuf_iterator<wchar_t> i(outf); in main() 35 assert(outf.str() == L"a"); in main() 37 assert(outf.str() == L"ab"); in main()
|
D | deref.pass.cpp | 23 std::ostringstream outf; in main() local 24 std::ostreambuf_iterator<char> i(outf); in main() 29 std::wostringstream outf; in main() local 30 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
D | increment.pass.cpp | 24 std::ostringstream outf; in main() local 25 std::ostreambuf_iterator<char> i(outf); in main() 32 std::wostringstream outf; in main() local 33 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
D | ostream_delem.pass.cpp | 23 std::ostringstream outf; in main() local 24 std::ostream_iterator<int> i(outf, ", "); in main() 25 assert(outf.good()); in main() 28 std::wostringstream outf; in main() local 29 std::ostream_iterator<double, wchar_t> i(outf, L", "); in main() 30 assert(outf.good()); in main()
|
D | ostream.pass.cpp | 22 std::ostringstream outf; in main() local 23 std::ostream_iterator<int> i(outf); in main() 24 assert(outf.good()); in main()
|
D | copy.pass.cpp | 22 std::ostringstream outf; in main() local 23 std::ostream_iterator<int> i(outf); in main() 25 assert(outf.good()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/ |
D | ostream.pass.cpp | 23 std::ostringstream outf; in main() local 24 std::ostreambuf_iterator<char> i(outf); in main() 28 std::wostringstream outf; in main() local 29 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
D | streambuf.pass.cpp | 23 std::ostringstream outf; in main() local 24 std::ostreambuf_iterator<char> i(outf.rdbuf()); in main() 28 std::wostringstream outf; in main() local 29 std::ostreambuf_iterator<wchar_t> i(outf.rdbuf()); in main()
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | execute.c | 545 output_missing_newline(outf) in output_missing_newline() argument 546 struct output *outf; in output_missing_newline() 548 if (outf->missing_newline) 550 ck_fwrite("\n", 1, 1, outf->fp); 551 outf->missing_newline = false; 566 output_line(text, length, nl, outf) in output_line() argument 570 struct output *outf; 575 output_missing_newline(outf); 577 ck_fwrite(text, 1, length, outf->fp); 579 ck_fwrite("\n", 1, 1, outf->fp); [all …]
|
D | sed.h | 126 struct output *outf; /* 'w' option given */ member 177 struct output *outf; member
|
D | compile.c | 95 struct output outf; member 401 for (special = special_files; special->outf.name; special++) 402 if (strcmp(special->outf.name, file_name) == 0) 404 special->outf.fp = *special->pfp; 406 return &special->outf; 599 cmd->outf = NULL; 653 cmd->outf = get_openfile(&file_write, "w", true); 1262 cur_cmd->x.outf = get_openfile(&file_write, "w", true);
|