HomeSort by relevance Sort by last modified time
    Searched defs:fs (Results 1 - 25 of 337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
default.pass.cpp 23 std::fstream fs; local
26 std::wfstream fs; local
move.pass.cpp 28 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/
rdbuf.pass.cpp 23 std::fstream fs; local
24 assert(fs.rdbuf());
27 std::wfstream fs; local
28 assert(fs.rdbuf());
close.pass.cpp 25 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.is_open())
    [all...]
open_pointer.pass.cpp 25 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.open(temp.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
open_string.pass.cpp 25 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.open(temp, std::ios_base::in | std::ios_base::ou
    [all...]
  /external/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/
default.pass.cpp 23 std::ifstream fs; local
26 std::wifstream fs; local
move.pass.cpp 25 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/
close.pass.cpp 23 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.is_open())
    [all...]
open_pointer.pass.cpp 23 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 >> c
    [all...]
open_string.pass.cpp 23 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 >> c
    [all...]
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
default.pass.cpp 23 std::ofstream fs; local
26 std::wofstream fs; local
move.pass.cpp 27 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/
comfort_noise_unittest.cc 22 int fs = 8000; local
25 ComfortNoise cn(fs, &db, &sync_buffer);
merge_unittest.cc 26 int fs = 8000; local
31 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
32 Merge merge(fs, channels, &expand, &sync_buffer);
expand_unittest.cc 23 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/
stringseg.asm 3 fs stosd label
5 es fs gs movsw
  /external/e2fsprogs/lib/ext2fs/
dupfs.c 24 ext2_filsys fs; local
29 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs);
33 *fs = *src;
34 fs->device_name = 0;
35 fs->super = 0;
36 fs->orig_super = 0;
37 fs->group_desc = 0;
38 fs->inode_map = 0;
39 fs->block_map = 0;
40 fs->badblocks = 0
    [all...]
  /external/libcxx/test/input.output/file.streams/fstreams/fstream.assign/
move_assign.pass.cpp 28 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 >> x
    [all...]
  /external/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/
move_assign.pass.cpp 25 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/
move_assign.pass.cpp 27 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 >> x
    [all...]
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 25 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.is_open())
    [all...]
open_pointer.pass.cpp 25 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...]
open_string.pass.cpp 25 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/
mkquota.h 13 * 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 636 milliseconds

1 2 3 4 5 6 7 8 91011>>