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

1 2 3

  /prebuilts/ndk/r11/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());
  /prebuilts/ndk/r11/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...]
  /external/libcxx/test/std/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);
  /prebuilts/ndk/r11/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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");
  /toolchain/binutils/binutils-2.25/opcodes/
bfin-dis.c 122 fmtconst (const_forms_t cf, TIword x, bfd_vma pc, disassemble_info *outf)
136 if (outf->symbol_at_address_func (ea, outf) || !constant_formats[cf].exact)
138 outf->print_address_func (ea, outf);
440 #define uimm16s4(x) fmtconst (c_uimm16s4, x, 0, outf)
441 #define uimm16s4d(x) fmtconst (c_uimm16s4d, x, 0, outf)
442 #define pcrel4(x) fmtconst (c_pcrel4, x, pc, outf)
443 #define pcrel8(x) fmtconst (c_pcrel8, x, pc, outf)
444 #define pcrel8s4(x) fmtconst (c_pcrel8s4, x, pc, outf)
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
ostream_delim.pass.cpp 31 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());
copy.pass.cpp 22 std::ostringstream outf; local
23 std::ostream_iterator<int> i(outf);
25 assert(outf.good());
ostream.pass.cpp 30 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());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
ostream_delim.pass.cpp 31 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());
copy.pass.cpp 22 std::ostringstream outf; local
23 std::ostream_iterator<int> i(outf);
25 assert(outf.good());
ostream.pass.cpp 30 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());
  /external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
assign_t.pass.cpp 31 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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
assign_t.pass.cpp 27 std::ostringstream outf; local
28 std::ostream_iterator<int> i(outf);
30 assert(outf.str() == "2");
33 std::ostringstream outf; local
34 std::ostream_iterator<int> i(outf, ", ");
36 assert(outf.str() == "2, ");
39 std::wostringstream outf; local
40 std::ostream_iterator<int, wchar_t> i(outf);
42 assert(outf.str() == L"2");
45 std::wostringstream outf; local
    [all...]
  /external/libcxx/test/std/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());
  /prebuilts/ndk/r11/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());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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();

Completed in 253 milliseconds

1 2 3