Home
last modified time | relevance | path

Searched refs:outf (Results 1 – 12 of 12) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
Dassign_t.pass.cpp23 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/
Dassign_c.pass.cpp24 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()
Dderef.pass.cpp23 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()
Dincrement.pass.cpp24 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/
Dostream_delem.pass.cpp23 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()
Dostream.pass.cpp22 std::ostringstream outf; in main() local
23 std::ostream_iterator<int> i(outf); in main()
24 assert(outf.good()); in main()
Dcopy.pass.cpp22 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/
Dostream.pass.cpp23 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()
Dstreambuf.pass.cpp23 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/
Dexecute.c545 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 …]
Dsed.h126 struct output *outf; /* 'w' option given */ member
177 struct output *outf; member
Dcompile.c95 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);