HomeSort by relevance Sort by last modified time
    Searched refs:outf (Results 1 - 25 of 27) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
ostream.pass.cpp 22 std::ostringstream outf; local
23 std::ostream_iterator<int> i(outf);
24 assert(outf.good());
ostream_delem.pass.cpp 23 std::ostringstream outf; local
24 std::ostream_iterator<int> i(outf, ", ");
25 assert(outf.good());
28 std::wostringstream outf; local
29 std::ostream_iterator<double, wchar_t> i(outf, L", ");
30 assert(outf.good());
copy.pass.cpp 22 std::ostringstream outf; local
23 std::ostream_iterator<int> i(outf);
25 assert(outf.good());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
assign_t.pass.cpp 23 std::ostringstream outf; local
24 std::ostream_iterator<int> i(outf);
26 assert(outf.str() == "2");
29 std::ostringstream outf; local
30 std::ostream_iterator<int> i(outf, ", ");
32 assert(outf.str() == "2, ");
35 std::wostringstream outf; local
36 std::ostream_iterator<int, wchar_t> i(outf);
38 assert(outf.str() == L"2");
41 std::wostringstream outf; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
assign_c.pass.cpp 24 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");
deref.pass.cpp 23 std::ostringstream outf; local
24 std::ostreambuf_iterator<char> i(outf);
29 std::wostringstream outf; local
30 std::ostreambuf_iterator<wchar_t> i(outf);
increment.pass.cpp 24 std::ostringstream outf; local
25 std::ostreambuf_iterator<char> i(outf);
32 std::wostringstream outf; local
33 std::ostreambuf_iterator<wchar_t> i(outf);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/
ostream.pass.cpp 23 std::ostringstream outf; local
24 std::ostreambuf_iterator<char> i(outf);
28 std::wostringstream outf; local
29 std::ostreambuf_iterator<wchar_t> i(outf);
streambuf.pass.cpp 23 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/zlib/src/contrib/iostream3/
test.cc 13 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/strace/
count.c 158 call_summary_pers(FILE *outf)
193 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %s\n",
196 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n",
212 fprintf(outf, "%6.2f %11.6f %11ld %9d %9.9s %s\n",
221 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n",
227 fprintf(outf, "%6.6s %11.6f %11.11s %9d %9.9s %s\n",
233 call_summary(FILE *outf)
245 fprintf(outf,
248 call_summary_pers(outf);
strace.c 117 FILE *outf; variable
368 tcp->outf = fp;
414 tcp->outf = outf;
584 if (outf != stderr) close (fileno (outf));
598 if (outf!=stderr)
599 close(fileno (outf));
786 outf = stderr;
989 if ((outf = strace_popen(outfname + 1)) == NULL
    [all...]
defs.h 353 FILE *outf; /* Output file for this process */ member in struct:tcb
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_scripts.py 96 outf = open(outfile, "w")
98 outf.write("#!%s%s\n" %
102 outf.write("#!%s%s\n" %
108 outf.writelines(f.readlines())
109 outf.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_scripts.py 96 outf = open(outfile, "w")
98 outf.write("#!%s%s\n" %
102 outf.write("#!%s%s\n" %
108 outf.writelines(f.readlines())
109 outf.close()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pipes.py 231 [inf, cmd, kind, outf] = item
233 cmd = 'OUT=' + quote(outf) + '; ' + cmd
238 if kind[1] == '-' and outf:
239 cmd = cmd + ' >' + quote(outf)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pipes.py 231 [inf, cmd, kind, outf] = item
233 cmd = 'OUT=' + quote(outf) + '; ' + cmd
238 if kind[1] == '-' and outf:
239 cmd = cmd + ' >' + quote(outf)
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 126 struct output *outf; /* 'w' option given */ member in struct:subst
177 struct output *outf; member in union:sed_cmd::__anon35095
execute.c 549 output_missing_newline(outf)
550 struct output *outf;
552 if (outf->missing_newline)
554 ck_fwrite("\n", 1, 1, outf->fp);
555 outf->missing_newline = false;
570 output_line(text, length, nl, outf)
574 struct output *outf;
579 output_missing_newline(outf);
581 ck_fwrite(text, 1, length, outf->fp);
583 ck_fwrite("\n", 1, 1, outf->fp)
    [all...]
compile.c 96 struct output outf;
406 for (special = special_files; special->outf.name; special++)
407 if (strcmp(special->outf.name, file_name) == 0)
409 special->outf.fp = *special->pfp;
411 return &special->outf;
605 cmd->outf = NULL;
659 cmd->outf = get_openfile(&file_write, "w", true);
1270 cur_cmd->x.outf = get_openfile(&file_write, "w", true);
95 struct output outf; member in struct:special_files
    [all...]
  /external/zlib/src/contrib/blast/
blast.c 424 local int outf(void *how, unsigned char *buf, unsigned len) function
435 ret = blast(inf, stdin, outf, stdout);
  /external/chromium_org/third_party/openssl/openssl/apps/
enc.c 124 char *inf=NULL,*outf=NULL; local
178 outf= *(++argv);
452 if (outf == NULL)
468 if (BIO_write_filename(out,outf) <= 0)
470 perror(outf);
  /external/openssl/apps/
enc.c 124 char *inf=NULL,*outf=NULL; local
178 outf= *(++argv);
452 if (outf == NULL)
468 if (BIO_write_filename(out,outf) <= 0)
470 perror(outf);
  /external/chromium_org/third_party/ply/
yacc.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 620 inf, outf = os.popen4("%s -S \"%s\"" %
622 output = outf.read().strip()
    [all...]

Completed in 543 milliseconds

1 2