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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/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;
  /ndk/sources/cxx-stl/llvm-libc++/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, 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, 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, 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...]
open_string.pass.cpp 25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(std::string(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(std::string(temp), std::ios_base::in | std::ios_base::ou
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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;
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /ndk/sources/cxx-stl/llvm-libc++/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);
33 fs >> x;
39 std::wofstream fs = move(fso); local
40 fs << 3.25;
43 std::wifstream fs(temp);
45 fs >> x;
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /ndk/sources/cxx-stl/llvm-libc++/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;
  /ndk/sources/cxx-stl/llvm-libc++/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);
34 fs >> x;
40 std::wofstream fs; local
41 fs = move(fso);
42 fs << 3.25;
45 std::wifstream fs(temp);
47 fs >> x
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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);
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);
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);
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp);
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(std::string(temp));
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp);
37 fs >> c;
42 std::wofstream fs; local
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
package-info.java 22 package de.waldheinz.fs.fat;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
package-info.java 21 * the {@link de.waldheinz.fs.FileSystemFactory} for creating
22 * {@link de.waldheinz.fs.FileSystem} instances.
24 package de.waldheinz.fs;
FileSystemFactory.java 19 package de.waldheinz.fs;
21 import de.waldheinz.fs.fat.FatFileSystem;
ReadOnlyException.java 19 package de.waldheinz.fs;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
package-info.java 23 package de.waldheinz.fs.util;

Completed in 256 milliseconds

1 2 3 4 5 6 7 8 91011>>