HomeSort by relevance Sort by last modified time
    Searched refs:fs2 (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/
member_swap.pass.cpp 24 std::ifstream fs2("test2.dat");
25 fs1.swap(fs2);
29 fs2 >> x;
34 std::wifstream fs2("test2.dat");
35 fs1.swap(fs2);
39 fs2 >> x;
nonmember_swap.pass.cpp 25 std::ifstream fs2("test2.dat");
26 swap(fs1, fs2);
30 fs2 >> x;
35 std::wifstream fs2("test2.dat");
36 swap(fs1, fs2);
40 fs2 >> x;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/
member_swap.pass.cpp 24 std::ifstream fs2("test2.dat");
25 fs1.swap(fs2);
29 fs2 >> x;
34 std::wifstream fs2("test2.dat");
35 fs1.swap(fs2);
39 fs2 >> x;
nonmember_swap.pass.cpp 25 std::ifstream fs2("test2.dat");
26 swap(fs1, fs2);
30 fs2 >> x;
35 std::wifstream fs2("test2.dat");
36 swap(fs1, fs2);
40 fs2 >> x;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.assign/
member_swap.pass.cpp 24 std::ifstream fs2("test2.dat");
25 fs1.swap(fs2);
29 fs2 >> x;
34 std::wifstream fs2("test2.dat");
35 fs1.swap(fs2);
39 fs2 >> x;
nonmember_swap.pass.cpp 25 std::ifstream fs2("test2.dat");
26 swap(fs1, fs2);
30 fs2 >> x;
35 std::wifstream fs2("test2.dat");
36 swap(fs1, fs2);
40 fs2 >> x;
  /external/valgrind/none/tests/x86/
pushpopseg.c 10 unsigned short fs2; local
21 : "=r" (sp1), "=r" (sp2), "=r" (sp3), "=r" (fs2)
37 : "=r" (sp1), "=r" (sp2), "=r" (sp3), "=r" (fs2)
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 27 std::ofstream fs2(temp2.c_str());
29 fs2 << 4.5;
30 fs1.swap(fs2);
32 fs2 << ' ' << 4.5;
54 std::wofstream fs2(temp2.c_str());
56 fs2 << 4.5;
57 fs1.swap(fs2);
59 fs2 << ' ' << 4.5;
nonmember_swap.pass.cpp 28 std::ofstream fs2(temp2.c_str());
30 fs2 << 4.5;
31 swap(fs1, fs2);
33 fs2 << ' ' << 4.5;
55 std::wofstream fs2(temp2.c_str());
57 fs2 << 4.5;
58 swap(fs1, fs2);
60 fs2 << ' ' << 4.5;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 27 std::ofstream fs2(temp2.c_str());
29 fs2 << 4.5;
30 fs1.swap(fs2);
32 fs2 << ' ' << 4.5;
54 std::wofstream fs2(temp2.c_str());
56 fs2 << 4.5;
57 fs1.swap(fs2);
59 fs2 << ' ' << 4.5;
nonmember_swap.pass.cpp 28 std::ofstream fs2(temp2.c_str());
30 fs2 << 4.5;
31 swap(fs1, fs2);
33 fs2 << ' ' << 4.5;
55 std::wofstream fs2(temp2.c_str());
57 fs2 << 4.5;
58 swap(fs1, fs2);
60 fs2 << ' ' << 4.5;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 27 std::ofstream fs2(temp2.c_str());
29 fs2 << 4.5;
30 fs1.swap(fs2);
32 fs2 << ' ' << 4.5;
54 std::wofstream fs2(temp2.c_str());
56 fs2 << 4.5;
57 fs1.swap(fs2);
59 fs2 << ' ' << 4.5;
nonmember_swap.pass.cpp 28 std::ofstream fs2(temp2.c_str());
30 fs2 << 4.5;
31 swap(fs1, fs2);
33 fs2 << ' ' << 4.5;
55 std::wofstream fs2(temp2.c_str());
57 fs2 << 4.5;
58 swap(fs1, fs2);
60 fs2 << ' ' << 4.5;
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 28 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
31 fs2 << 2 << ' ' << 1;
33 fs1.swap(fs2);
41 fs2 >> i;
43 fs2 >> i;
51 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
54 fs2 << 2 << ' ' << 1;
56 fs1.swap(fs2);
64 fs2 >> i;
66 fs2 >> i
    [all...]
nonmember_swap.pass.cpp 29 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
32 fs2 << 2 << ' ' << 1;
34 swap(fs1, fs2);
42 fs2 >> i;
44 fs2 >> i;
52 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
55 fs2 << 2 << ' ' << 1;
57 swap(fs1, fs2);
65 fs2 >> i;
67 fs2 >> i
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 28 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
31 fs2 << 2 << ' ' << 1;
33 fs1.swap(fs2);
41 fs2 >> i;
43 fs2 >> i;
51 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
54 fs2 << 2 << ' ' << 1;
56 fs1.swap(fs2);
64 fs2 >> i;
66 fs2 >> i
    [all...]
nonmember_swap.pass.cpp 29 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
32 fs2 << 2 << ' ' << 1;
34 swap(fs1, fs2);
42 fs2 >> i;
44 fs2 >> i;
52 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
55 fs2 << 2 << ' ' << 1;
57 swap(fs1, fs2);
65 fs2 >> i;
67 fs2 >> i
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 28 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
31 fs2 << 2 << ' ' << 1;
33 fs1.swap(fs2);
41 fs2 >> i;
43 fs2 >> i;
51 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
54 fs2 << 2 << ' ' << 1;
56 fs1.swap(fs2);
64 fs2 >> i;
66 fs2 >> i
    [all...]
nonmember_swap.pass.cpp 29 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
32 fs2 << 2 << ' ' << 1;
34 swap(fs1, fs2);
42 fs2 >> i;
44 fs2 >> i;
52 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
55 fs2 << 2 << ' ' << 1;
57 swap(fs1, fs2);
65 fs2 >> i;
67 fs2 >> i
    [all...]
  /prebuilts/go/darwin-x86/src/os/
types_unix.go 29 func sameFile(fs1, fs2 *fileStat) bool {
30 return fs1.sys.Dev == fs2.sys.Dev && fs1.sys.Ino == fs2.sys.Ino
types_windows.go 96 func sameFile(fs1, fs2 *fileStat) bool {
101 e = fs2.loadFileId()
105 return fs1.vol == fs2.vol && fs1.idxhi == fs2.idxhi && fs1.idxlo == fs2.idxlo
types_plan9.go 26 func sameFile(fs1, fs2 *fileStat) bool {
28 b := fs2.sys.(*syscall.Dir)
  /prebuilts/go/linux-x86/src/os/
types_unix.go 29 func sameFile(fs1, fs2 *fileStat) bool {
30 return fs1.sys.Dev == fs2.sys.Dev && fs1.sys.Ino == fs2.sys.Ino
types_windows.go 96 func sameFile(fs1, fs2 *fileStat) bool {
101 e = fs2.loadFileId()
105 return fs1.vol == fs2.vol && fs1.idxhi == fs2.idxhi && fs1.idxlo == fs2.idxlo
  /external/clang/test/SemaCXX/
converting-constructor.cpp 44 FromShort fs2 = s; local

Completed in 1263 milliseconds

1 2 3