Lines Matching refs:fout
117 std::ofstream fout(des, std::ofstream::out || std::ofstream::binary);
118 if (!fout) {
122 fout << fin.rdbuf();
123 if (!fout) {
125 fout.close();
129 fout.close();
135 std::ofstream fout(file, std::ofstream::out || std::ofstream::app);
136 if (!fout) {
140 fout << i << std::endl;
142 if (!fout) {
143 fout.close();
146 fout.close();