ifs 30 data/sphere/2014paperALE_sphere/improve_sphere.cpp ifstream ifs(ifname); ifs 31 data/sphere/2014paperALE_sphere/improve_sphere.cpp if (!ifs) throw runtime_error("load_file()"); ifs 33 data/sphere/2014paperALE_sphere/improve_sphere.cpp for(string line; getline(ifs,line); ) ifs 35 data/sphere/2014paperALE_sphere/improve_sphere.cpp ifs.close(); ifs 17 data/sphere/first_revision/test.cpp ifstream ifs {argv[1]}; ifs 18 data/sphere/first_revision/test.cpp if(!ifs) throw runtime_error("File not found!"); ifs 21 data/sphere/first_revision/test.cpp for(string s; readLine_until_string(ifs, s, "SIMPLEX");){ ifs 26 data/sphere/first_revision/test.cpp for(string s; readLine_until_string(ifs, s, "#");){ ifs 33 data/sphere/first_revision/test.cpp ifs.close(); ifs 51 include/io_dof.h std::ifstream ifs {filename}; ifs 52 include/io_dof.h if(!ifs) err_open_file(filename); ifs 55 include/io_dof.h if(ifs >> value) *first = value; ifs 67 include/io_dof.h std::ifstream ifs {filename}; ifs 68 include/io_dof.h if(!ifs) err_open_file(filename); ifs 71 include/io_dof.h if(ifs >> value) *first = value; ifs 75 include/io_dof.h if(!(ifs >> std::ws).eof()) throw std::runtime_error ifs 82 old_code/2015linfty/dune_bdf.hpp std::ifstream ifs {filename}; ifs 83 old_code/2015linfty/dune_bdf.hpp if(!ifs) error("File \"" + filename + "\" does not exist!"); ifs 86 old_code/2015linfty/dune_bdf.hpp for(std::string line; getline(ifs, line); ) ifs 88 old_code/2015linfty/dune_bdf.hpp ifs.close(); ifs 78 old_code/2015linfty/iodof.h std::ifstream ifs {curr_file}; ifs 79 old_code/2015linfty/iodof.h if(!ifs) err_handling("Could not open file: " + curr_file); ifs 81 old_code/2015linfty/iodof.h ifs >> *it; ifs 88 old_code/tumor_growth/tumor_bdf.h std::ifstream ifs {filename}; ifs 89 old_code/tumor_growth/tumor_bdf.h if(!ifs) error("File \"" + filename + "\" does not exist!"); ifs 92 old_code/tumor_growth/tumor_bdf.h for(std::string line; getline(ifs, line); ) ifs 94 old_code/tumor_growth/tumor_bdf.h ifs.close(); ifs 40 src/maxH_main.cpp ifstream ifs {filename}; ifs 41 src/maxH_main.cpp if(!ifs) throw bad {Assert::compose(__FILE__, __LINE__, fname)}; ifs 42 src/maxH_main.cpp for(string s; getline(ifs, s); ) push_back(s); ifs 43 src/maxH_main.cpp ifs.close();