Lines Matching defs:fs
31 std::ofstream fs(temp);
32 fs << 3.25;
35 std::ifstream fs(temp);
37 fs >> x;
43 std::basic_ofstream<char, operator_hijacker_char_traits<char> > fs(temp);
44 fs << "3.25";
47 std::ifstream fs(temp);
49 fs >> x;
55 std::ofstream fs(temp, std::ios_base::out);
56 fs << 3.25;
59 std::ifstream fs(temp);
61 fs >> x;
67 std::basic_ofstream<char, operator_hijacker_char_traits<char> > fs(temp, std::ios_base::out);
68 fs << "3.25";
71 std::ifstream fs(temp);
73 fs >> x;
79 std::wofstream fs(temp);
80 fs << 3.25;
83 std::wifstream fs(temp);
85 fs >> x;
91 std::basic_ofstream<wchar_t, operator_hijacker_char_traits<wchar_t> > fs(temp);
92 fs << L"3.25";
95 std::wifstream fs(temp);
97 fs >> x;
103 std::wofstream fs(temp, std::ios_base::out);
104 fs << 3.25;
107 std::wifstream fs(temp);
109 fs >> x;
115 std::basic_ofstream<wchar_t, operator_hijacker_char_traits<wchar_t> > fs(temp, std::ios_base::out);
116 fs << L"3.25";
119 std::wifstream fs(temp);
121 fs >> x;