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

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
H A Drdbuf.pass.cpp23 std::ifstream fs("test.dat");
24 std::filebuf* fb = fs.rdbuf();
28 std::wifstream fs("test.dat");
29 std::wfilebuf* fb = fs.rdbuf();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
H A Dopen_string.pass.cpp25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp, 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...]
H A Dclose.pass.cpp25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str(), std::ios_base::out);
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wfstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str(), std::ios_base::out);
37 assert(fs
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
H A Ddefault.pass.cpp23 std::fstream fs; local
26 std::wfstream fs; local
H A Dmove.pass.cpp28 std::fstream fs = move(fso); local
30 fs << 3.25;
31 fs.seekg(0);
32 fs >> x;
39 std::wfstream fs = move(fso); local
41 fs << 3.25;
42 fs.seekg(0);
43 fs >> x;
H A Dpointer.pass.cpp25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
28 fs << 3.25;
29 fs.seekg(0);
30 fs >> x;
35 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
38 fs << 3.25;
39 fs.seekg(0);
40 fs >> x;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/
H A Ddefault.pass.cpp23 std::ifstream fs; local
26 std::wifstream fs; local
H A Dpointer.pass.cpp23 std::ifstream fs("test.dat");
25 fs >> x;
29 std::ifstream fs("test.dat", std::ios_base::out);
31 fs >> x;
35 std::wifstream fs("test.dat");
37 fs >> x;
41 std::wifstream fs("test.dat", std::ios_base::out);
43 fs >> x;
H A Dstring.pass.cpp23 std::ifstream fs(std::string("test.dat"));
25 fs >> x;
29 std::ifstream fs(std::string("test.dat"), std::ios_base::out);
31 fs >> x;
35 std::wifstream fs(std::string("test.dat"));
37 fs >> x;
41 std::wifstream fs(std::string("test.dat"), std::ios_base::out);
43 fs >> x;
H A Dmove.pass.cpp25 std::ifstream fs = move(fso); local
27 fs >> x;
32 std::wifstream fs = move(fso); local
34 fs >> x;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
H A Ddefault.pass.cpp23 std::ofstream fs; local
26 std::wofstream fs; local
H A Dpointer.pass.cpp25 std::ofstream fs(temp.c_str());
26 fs << 3.25;
29 std::ifstream fs(temp.c_str());
31 fs >> x;
36 std::wofstream fs(temp.c_str());
37 fs << 3.25;
40 std::wifstream fs(temp.c_str());
42 fs >> x;
H A Dstring.pass.cpp25 std::ofstream fs(temp);
26 fs << 3.25;
29 std::ifstream fs(temp);
31 fs >> x;
36 std::wofstream fs(temp);
37 fs << 3.25;
40 std::wifstream fs(temp);
42 fs >> x;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/
H A Dmove_assign.pass.cpp25 std::ifstream fs; local
26 fs = move(fso);
28 fs >> x;
33 std::wifstream fs; local
34 fs = move(fso);
36 fs >> x;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.assign/
H A Dmove_assign.pass.cpp28 std::fstream fs; local
29 fs = move(fso);
31 fs << 3.25;
32 fs.seekg(0);
33 fs >> x;
40 std::wfstream fs; local
41 fs = move(fso);
43 fs << 3.25;
44 fs.seekg(0);
45 fs >>
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
H A Dmove_assign.pass.cpp27 std::ofstream fs; local
28 fs = move(fso);
29 fs << 3.25;
32 std::ifstream fs(temp.c_str());
34 fs >> x;
40 std::wofstream fs; local
41 fs = move(fso);
42 fs << 3.25;
45 std::wifstream fs(temp.c_str());
47 fs >>
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/detail/
H A Dargument_value_usage.hpp48 argument_value_usage( format_stream& fs, long, T* = 0 ) argument
50 fs << BOOST_RT_PARAM_CSTRING_LITERAL( "<value>" );
58 argument_value_usage( format_stream& fs, int, std::list<T>* = 0 ) argument
60 fs << BOOST_RT_PARAM_CSTRING_LITERAL( "(<value1>, ..., <valueN>)" );
67 argument_value_usage( format_stream& fs, int, bool* = 0 ) argument
69 fs << BOOST_RT_PARAM_CSTRING_LITERAL( "yes|y|no|n" );

Completed in 4821 milliseconds

12