Searched refs:fs (Results 1 - 25 of 666) sorted by relevance

1234567891011>>

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.members/
H A Dclose.pass.cpp23 std::ifstream fs; local
24 assert(!fs.is_open());
25 fs.open("test.dat");
26 assert(fs.is_open());
27 fs.close();
28 assert(!fs.is_open());
31 std::wifstream fs; local
32 assert(!fs.is_open());
33 fs.open("test.dat");
34 assert(fs
[all...]
H A Dopen_pointer.pass.cpp23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open("test.dat");
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >>
[all...]
H A Dopen_string.pass.cpp23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open(std::string("test.dat"));
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >>
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.members/
H A Dclose.pass.cpp23 std::ifstream fs; local
24 assert(!fs.is_open());
25 fs.open("test.dat");
26 assert(fs.is_open());
27 fs.close();
28 assert(!fs.is_open());
31 std::wifstream fs; local
32 assert(!fs.is_open());
33 fs.open("test.dat");
34 assert(fs
[all...]
H A Dopen_pointer.pass.cpp23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open("test.dat");
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >>
[all...]
H A Dopen_string.pass.cpp23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open(std::string("test.dat"));
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >>
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.members/
H A Dopen_pointer.pass.cpp25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp.c_str());
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
[all...]
H A Dopen_string.pass.cpp25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp);
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
[all...]
H A Dclose.pass.cpp25 std::ofstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str());
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wofstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str());
37 assert(fs
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.members/
H A Dopen_pointer.pass.cpp25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp.c_str());
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
[all...]
H A Dopen_string.pass.cpp25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp);
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
[all...]
H A Dclose.pass.cpp25 std::ofstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str());
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wofstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str());
37 assert(fs
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.members/
H A Drdbuf.pass.cpp23 std::fstream fs; local
24 assert(fs.rdbuf());
27 std::wfstream fs; local
28 assert(fs.rdbuf());
H A Dopen_pointer.pass.cpp25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
29 assert(fs.is_open());
31 fs << 3.25;
32 fs.seekg(0);
33 fs >> x;
38 std::wfstream fs; local
39 assert(!fs.is_open());
40 fs
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.cons/
H A Dpointer.pass.cpp23 std::ifstream fs("test.dat");
25 fs >> x;
32 std::wifstream fs("test.dat");
34 fs >> x;
H A Ddefault.pass.cpp23 std::ifstream fs; local
26 std::wifstream fs; local
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.members/
H A Drdbuf.pass.cpp23 std::fstream fs; local
24 assert(fs.rdbuf());
27 std::wfstream fs; local
28 assert(fs.rdbuf());
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.cons/
H A Dpointer.pass.cpp23 std::ifstream fs("test.dat");
25 fs >> x;
32 std::wifstream fs("test.dat");
34 fs >> x;
H A Ddefault.pass.cpp23 std::ifstream fs; local
26 std::wifstream fs; local
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.cons/
H A Ddefault.pass.cpp23 std::fstream fs; local
26 std::wfstream fs; local
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.cons/
H A Ddefault.pass.cpp23 std::ofstream fs; local
26 std::wofstream fs; local
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.cons/
H A Ddefault.pass.cpp23 std::fstream fs; local
26 std::wfstream fs; local
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.cons/
H A Ddefault.pass.cpp23 std::ofstream fs; local
26 std::wofstream fs; local
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.assign/
H A Dmove_assign.pass.cpp26 std::ifstream fs; local
27 fs = move(fso);
29 fs >> x;
34 std::wifstream fs; local
35 fs = move(fso);
37 fs >> x;
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.assign/
H A Dmove_assign.pass.cpp26 std::ifstream fs; local
27 fs = move(fso);
29 fs >> x;
34 std::wifstream fs; local
35 fs = move(fso);
37 fs >> x;

Completed in 180 milliseconds

1234567891011>>