filename           28 data/sphere/level_set_test.cpp const Vertices get_vertices(const std::string& filename);
filename           81 data/sphere/level_set_test.cpp const Vertices get_vertices(const std::string& filename){
filename           82 data/sphere/level_set_test.cpp   std::ifstream dgf_file {filename};
filename           83 data/sphere/level_set_test.cpp   if(!dgf_file) throw std::runtime_error {"File \"" + filename + "\" does not exist."};
filename           93 data/sphere/level_set_test.cpp     {"Could not find " + begin_vertices + " in file \"" + filename + "\"."};
filename          100 data/sphere/level_set_test.cpp     {"Empty vertex list detected in file \"" + filename + "\"."};
filename           63 include/io_dgf.h       Handler::Simplices create_simplices(const std::string& filename);
filename           64 include/io_dgf.h       Handler::Lines create_stringSimplices(const std::string& filename);
filename           66 include/io_dgf.h       std::size_t get_precision(const std::string& filename);
filename           69 include/io_dgf.h       Handler::Vertices create_vertices(const std::string& filename);
filename           70 include/io_dgf.h       Handler::Lines create_stringVertices(const std::string& filename);
filename           27 include/io_dof.h 		     const std::string& filename);
filename           30 include/io_dof.h     void file_to_dof(It first, const std::string& filename, std::size_t dof_no);
filename           33 include/io_dof.h 		     const std::string& filename);
filename           50 include/io_dof.h 		     const std::string& filename) try{      
filename           51 include/io_dof.h       std::ifstream ifs {filename};
filename           52 include/io_dof.h       if(!ifs) err_open_file(filename);
filename           56 include/io_dof.h 	else err_file_to_small(filename);
filename           65 include/io_dof.h     void file_to_dof(It first, const std::string& filename,
filename           67 include/io_dof.h       std::ifstream ifs {filename};
filename           68 include/io_dof.h       if(!ifs) err_open_file(filename);
filename           72 include/io_dof.h 	else err_file_to_small(filename);
filename           76 include/io_dof.h 	{"Stuff left in file \"" + filename + "\"."};
filename           84 include/io_dof.h 		     const std::string& filename) try{
filename           85 include/io_dof.h       std::ofstream ofs {filename};
filename           86 include/io_dof.h       if(!ofs) err_open_file(filename);
filename           89 include/io_dof.h 	  err_file_to_small(filename);
filename           46 old_code/2015linfty/dune_bdf.hpp 	  std::string filename;
filename           60 old_code/2015linfty/dune_bdf.hpp 	std::vector<std::string> getVertexList(const std::string& filename)
filename           82 old_code/2015linfty/dune_bdf.hpp 		std::ifstream ifs {filename};
filename           83 old_code/2015linfty/dune_bdf.hpp 		if(!ifs) error("File \"" + filename + "\" does not exist!");
filename           94 old_code/2015linfty/dune_bdf.hpp 										 + filename + "\"!");
filename           99 old_code/2015linfty/dune_bdf.hpp 										+ filename + "\"!");
filename          151 old_code/2015linfty/dune_bdf.hpp 		filename {input_filename}
filename          153 old_code/2015linfty/dune_bdf.hpp 		std::vector<std::string> lines = getVertexList(filename);
filename           34 old_code/2015linfty/iodof.h   std::string filename;
filename           48 old_code/2015linfty/iodof.h   : filename {filename_series_prefix}, io_dir {write_or_read}, f_no {starting_no}
filename           68 old_code/2015linfty/iodof.h   const std::string curr_file {filename + std::to_string(f_no)};
filename           52 old_code/tumor_growth/tumor_bdf.h     std::string filename;
filename           66 old_code/tumor_growth/tumor_bdf.h   std::vector<std::string> getVertexList(const std::string& filename)
filename           88 old_code/tumor_growth/tumor_bdf.h     std::ifstream ifs {filename};
filename           89 old_code/tumor_growth/tumor_bdf.h     if(!ifs) error("File \"" + filename + "\" does not exist!");
filename          100 old_code/tumor_growth/tumor_bdf.h 				     + filename + "\"!");
filename          105 old_code/tumor_growth/tumor_bdf.h 				    + filename + "\"!");
filename          172 old_code/tumor_growth/tumor_bdf.h     filename {input_filename}
filename          174 old_code/tumor_growth/tumor_bdf.h 	  std::vector<std::string> lines = getVertexList(filename);
filename          227 old_code/tumor_growth/tumor_bdf.h     original_vertices = getVertexList(filename);
filename           31 src/grid_GridAndTime_impl.cpp Esfem::Impl::Evolving_grid::Evolving_grid(const std::string& filename)
filename           32 src/grid_GridAndTime_impl.cpp try : original_vertices {get_vertexList(filename)},
filename           86 src/grid_GridAndTime_impl.cpp get_vertexList(const std::string& filename) try{
filename           89 src/grid_GridAndTime_impl.cpp   const auto whole_file = dgfFile_to_vec(filename);
filename           91 src/grid_GridAndTime_impl.cpp   auto first = dgf_find_vertex(cbegin(whole_file), cend(whole_file), filename);
filename           92 src/grid_GridAndTime_impl.cpp   auto last = dgf_close_list(first, cend(whole_file), filename);  
filename          219 src/grid_GridAndTime_impl.cpp dgfFile_to_vec(const std::string& filename) try{
filename          220 src/grid_GridAndTime_impl.cpp   std::ifstream dgf_file {filename};
filename          221 src/grid_GridAndTime_impl.cpp   if(!dgf_file) throw logic_error {"Could not open \"" + filename + "\"."};
filename          105 src/grid_GridAndTime_impl.h       explicit Evolving_grid(const std::string& filename);
filename          178 src/grid_GridAndTime_impl.h     Evolving_grid::Nodes_key get_vertexList(const std::string& filename);
filename          202 src/grid_GridAndTime_impl.h     std::vector<std::string> dgfFile_to_vec(const std::string& filename);
filename          205 src/grid_GridAndTime_impl.h     It dgf_find_vertex(It first, It last, const std::string& filename);
filename          207 src/grid_GridAndTime_impl.h     It dgf_close_list(It first, It last, const std::string& filename);
filename          232 src/grid_GridAndTime_impl.h     It dgf_find_vertex(It first, It last, const std::string& filename){
filename          238 src/grid_GridAndTime_impl.h 	    + "\" in file " + filename + "."};
filename          243 src/grid_GridAndTime_impl.h     It dgf_close_list(It first, It last, const std::string& filename){
filename          249 src/grid_GridAndTime_impl.h 	    + "\" in file " + filename + "."};
filename          187 src/io_dgf.cpp Simplices Esfem::Io::Dgf::create_simplices(const std::string& filename) try{
filename          189 src/io_dgf.cpp   const auto simplices_list = create_stringSimplices(filename);
filename          199 src/io_dgf.cpp Lines Esfem::Io::Dgf::create_stringSimplices(const string& filename) try{
filename          200 src/io_dgf.cpp   const auto lines = Esfem::Impl::dgfFile_to_vec(filename);
filename          219 src/io_dgf.cpp Vertices Esfem::Io::Dgf::create_vertices(const string& filename) try{
filename          221 src/io_dgf.cpp   const auto vertices_list = create_stringVertices(filename);
filename          234 src/io_dgf.cpp Lines Esfem::Io::Dgf::create_stringVertices(const string& filename){
filename          235 src/io_dgf.cpp   const auto lines = Esfem::Impl::dgfFile_to_vec(filename);
filename           38 src/io_paraview.cpp   std::string filename;
filename           86 src/io_paraview.cpp   : filename {p.paraview()}, step {i}
filename           93 src/io_paraview.cpp   s << filename << step << "-";
filename           33 src/maxH_main.cpp   const string filename;
filename           37 src/maxH_main.cpp     :filename {fname}
filename           40 src/maxH_main.cpp     ifstream ifs {filename};
filename           73 src/maxH_main.cpp       oss << f.filename << ", line " << lineno;