Searched defs:outf (Results 1 - 21 of 21) sorted by relevance

/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
H A Dassign_t.pass.cpp31 std::ostringstream outf; local
32 std::ostream_iterator<int> i(outf);
34 assert(outf.str() == "2");
37 std::ostringstream outf; local
38 std::ostream_iterator<int> i(outf, ", ");
40 assert(outf.str() == "2, ");
43 std::wostringstream outf; local
44 std::ostream_iterator<int, wchar_t> i(outf);
46 assert(outf.str() == L"2");
49 std::wostringstream outf; local
[all...]
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/
H A Dostream.pass.cpp23 std::ostringstream outf; local
24 std::ostreambuf_iterator<char> i(outf);
28 std::wostringstream outf; local
29 std::ostreambuf_iterator<wchar_t> i(outf);
H A Dstreambuf.pass.cpp23 std::ostringstream outf; local
24 std::ostreambuf_iterator<char> i(outf.rdbuf());
28 std::wostringstream outf; local
29 std::ostreambuf_iterator<wchar_t> i(outf.rdbuf());
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
H A Dassign_c.pass.cpp24 std::ostringstream outf; local
25 std::ostreambuf_iterator<char> i(outf);
27 assert(outf.str() == "a");
29 assert(outf.str() == "ab");
32 std::wostringstream outf; local
33 std::ostreambuf_iterator<wchar_t> i(outf);
35 assert(outf.str() == L"a");
37 assert(outf.str() == L"ab");
H A Dderef.pass.cpp23 std::ostringstream outf; local
24 std::ostreambuf_iterator<char> i(outf);
29 std::wostringstream outf; local
30 std::ostreambuf_iterator<wchar_t> i(outf);
H A Dincrement.pass.cpp24 std::ostringstream outf; local
25 std::ostreambuf_iterator<char> i(outf);
32 std::wostringstream outf; local
33 std::ostreambuf_iterator<wchar_t> i(outf);
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
H A Dcopy.pass.cpp22 std::ostringstream outf; local
23 std::ostream_iterator<int> i(outf);
25 assert(outf.good());
H A Dostream.pass.cpp30 std::ostringstream outf; local
31 std::ostream_iterator<int> i(outf);
32 assert(outf.good());
35 StringStream outf; local
36 std::ostream_iterator<int, char, MyTraits> i(outf);
37 assert(outf.good());
H A Dostream_delim.pass.cpp31 std::ostringstream outf; local
32 std::ostream_iterator<int> i(outf, ", ");
33 assert(outf.good());
36 std::wostringstream outf; local
37 std::ostream_iterator<double, wchar_t> i(outf, L", ");
38 assert(outf.good());
41 StringStream outf; local
42 std::ostream_iterator<int, char, MyTraits> i(outf, ", ");
43 assert(outf.good());
/external/zlib/src/contrib/iostream3/
H A Dtest.cc13 gzofstream outf; local
17 outf.open("test1.txt.gz");
18 outf << "The quick brown fox sidestepped the lazy canine\n"
20 outf.close();
32 outf.rdbuf()->pubsetbuf(0,0);
33 outf.open("test2.txt.gz");
34 outf << setcompression(Z_NO_COMPRESSION)
37 outf.close();
/external/curl/docs/examples/
H A Dfopen.c460 FILE *outf; local
472 outf = fopen(FGETSFILE, "wb+");
473 if(!outf) {
481 fclose(outf);
487 fwrite(buffer, 1, strlen(buffer), outf);
492 fclose(outf);
496 outf = fopen(FREADFILE, "wb+");
497 if(!outf) {
505 fclose(outf);
511 fwrite(buffer, 1, nread, outf);
[all...]
/external/dtc/
H A Ddtc.c178 FILE *outf = NULL; local
344 outf = stdout;
346 outf = fopen(outname, "wb");
347 if (! outf)
353 dt_to_source(outf, dti);
355 dt_to_blob(outf, dti, outversion);
357 dt_to_asm(outf, dti, outversion);
/external/icu/icu4c/source/tools/escapesrc/
H A Descapesrc.cpp361 std::ofstream outf; local
363 outf.open(outfile.c_str(), std::ios::out);
365 if(!outf.is_open()) {
371 outf << "#line 1 \"" << infile << "\"" << '\n';
378 outf.close();
383 outf << linestr << '\n';
/external/strace/
H A Dcount.c155 call_summary_pers(FILE *outf) argument
169 fprintf(outf, header,
172 fprintf(outf, header, dashes, dashes, dashes, dashes, dashes, dashes);
207 fprintf(outf, data,
215 fprintf(outf, header, dashes, dashes, dashes, dashes, dashes, dashes);
216 fprintf(outf, summary,
222 call_summary(FILE *outf) argument
233 fprintf(outf,
236 call_summary_pers(outf);
H A Ddefs.h209 FILE *outf; /* Output file for this process */ member in struct:tcb
/external/zlib/src/contrib/blast/
H A Dblast.c440 local int outf(void *how, unsigned char *buf, unsigned len) function
453 ret = blast(inf, stdin, outf, stdout, &left, NULL);
/external/python/cpython2/Python/
H A Dsysmodule.c89 PyObject *outf; local
110 outf = PySys_GetObject("stdout");
111 if (outf == NULL) {
115 if (PyFile_WriteObject(o, outf, 0) != 0)
117 PyFile_SoftSpace(outf, 1);
/external/python/cpython3/Python/
H A Dsysmodule.c107 sys_displayhook_unencodable(PyObject *outf, PyObject *o) argument
114 stdout_encoding = _PyObject_GetAttrId(outf, &PyId_encoding);
131 buffer = _PyObject_GetAttrId(outf, &PyId_buffer);
146 if (PyFile_WriteObject(escaped_str, outf, Py_PRINT_RAW) != 0) {
165 PyObject *outf; local
187 outf = _PySys_GetObjectId(&PyId_stdout);
188 if (outf == NULL || outf == Py_None) {
192 if (PyFile_WriteObject(o, outf, 0) != 0) {
197 err = sys_displayhook_unencodable(outf,
[all...]
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
H A Dscsimain.c2200 char outf[INOUTF_SZ]; local
2225 strcpy(outf, device);
2248 inf, skip, outf, seek, dd_count);
2319 if (outf[0] && ('-' != outf[0])) {
2320 out_type = dd_filetype(outf);
2327 ME "unable to use scsi tape device %s\n", outf);
2330 if ((outfd = open(outf, O_RDWR)) < 0) {
2333 outf);
2357 if ((outfd = open(outf, flag
6282 char outf[INOUTF_SZ]; local
7291 char outf[INOUTF_SZ]; local
[all...]
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 7186 milliseconds