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

1234567891011>>

/external/libcxx/test/std/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/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 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/std/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/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...]
/external/libcxx/test/std/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/e2fsprogs/lib/ext2fs/
H A Dvalid_blk.c27 int ext2fs_inode_has_valid_blocks2(ext2_filsys fs, struct ext2_inode *inode) argument
42 if (ext2fs_file_acl_block(fs, inode) == 0) {
/external/libcxx/test/std/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/std/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/std/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/std/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/webrtc/webrtc/modules/audio_coding/neteq/
H A Dcomfort_noise_unittest.cc22 int fs = 8000; local
25 ComfortNoise cn(fs, &db, &sync_buffer);
/external/e2fsprogs/contrib/
H A Dadd_ext4_encrypt.c26 ext2_filsys fs; local
38 unix_io_manager, &fs);
45 if (!ext2fs_has_feature_encrypt(fs->super)) {
46 ext2fs_set_feature_encrypt(fs->super);
47 fs->super->s_encrypt_algos[0] =
49 fs->super->s_encrypt_algos[1] =
51 ext2fs_mark_super_dirty(fs);
56 retval = ext2fs_close(fs);
/external/elfutils/libdw/
H A Ddwarf_frame_cfa.c38 dwarf_frame_cfa (Dwarf_Frame *fs, Dwarf_Op **ops, size_t *nops) argument
41 if (fs == NULL)
45 switch (fs->cfa_rule)
54 *ops = &fs->cfa_data.offset;
61 (NULL, fs->cache->other_byte_order,
62 fs->cache->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8, 4,
63 &fs->cache->expr_tree, &fs->cfa_data.expr, false, false,
H A Ddwarf_frame_info.c36 dwarf_frame_info (Dwarf_Frame *fs, Dwarf_Addr *start, Dwarf_Addr *end, argument
40 if (fs == NULL)
44 *start = fs->start;
46 *end = fs->end;
48 *signalp = fs->fde->cie->signal_frame;
49 return fs->fde->cie->return_address_register;
/external/clang/test/CodeGen/
H A D2003-11-04-EmptyStruct.c5 void __copy_fs_struct(struct fs_struct *fs) { fs->lock = (rwlock_t) { }; } argument

Completed in 912 milliseconds

1234567891011>>