Searched defs:fs (Results 1 - 25 of 458) sorted by relevance

1234567891011>>

/external/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;
/external/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 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...]
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...]
/external/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 Dmove.pass.cpp25 std::ifstream fs = move(fso); local
27 fs >> x;
32 std::wifstream fs = move(fso); local
34 fs >> x;
/external/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...]
/external/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 Dmove.pass.cpp27 std::ofstream fs = move(fso); local
28 fs << 3.25;
31 std::ifstream fs(temp.c_str());
33 fs >> x;
39 std::wofstream fs = move(fso); local
40 fs << 3.25;
43 std::wifstream fs(temp.c_str());
45 fs >> x;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dcomfort_noise_unittest.cc22 int fs = 8000; local
25 ComfortNoise cn(fs, &db, &sync_buffer);
H A Dmerge_unittest.cc26 int fs = 8000; local
31 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
32 Merge merge(fs, channels, &expand, &sync_buffer);
H A Dexpand_unittest.cc23 int fs = 8000; local
28 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
32 int fs = 8000; local
39 expand_factory.Create(&bgn, &sync_buffer, &random_vector, fs, channels);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dstringseg.asm3 fs stosd label
5 es fs gs movsw
/external/e2fsprogs/lib/ext2fs/
H A Dvalid_blk.c26 int ext2fs_inode_has_valid_blocks2(ext2_filsys fs, struct ext2_inode *inode) argument
41 if (ext2fs_file_acl_block(fs, inode) == 0) {
/external/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...]
/external/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;
/external/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...]
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.members/
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...]
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...]
/external/e2fsprogs/lib/quota/
H A Dmkquota.h13 * quota_init_context(&qctx, fs, -1);
41 ext2_filsys fs; member in struct:quota_ctx
46 errcode_t quota_init_context(quota_ctx_t *qctx, ext2_filsys fs, int qtype);
58 errcode_t quota_remove_inode(ext2_filsys fs, int qtype);
59 int quota_file_exists(ext2_filsys fs, int qtype, int fmt);
60 void quota_set_sb_inum(ext2_filsys fs, ext2_ino_t ino, int qtype);

Completed in 727 milliseconds

1234567891011>>