fname              66 include/grid.h       explicit Deformation(const std::string& fname);
fname              41 include/io_dof.h     inline void err_open_file(const std::string& fname){
fname              42 include/io_dof.h       throw std::logic_error {"Could not open file " + fname};
fname              44 include/io_dof.h     inline void err_file_to_small(const std::string& fname){
fname              45 include/io_dof.h       throw std::runtime_error {"File \"" + fname + "\" not big enough."};
fname              57 include/io_errorStream.h       explicit Error_stream(const std::string& fname);
fname             240 src/grid_GridAndTime_impl.cpp grid::grid(const std::string& fname){
fname             241 src/grid_GridAndTime_impl.cpp   const auto str_keys = get_vertexList(fname);
fname             263 src/grid_GridAndTime_impl.cpp     oss << "In " << fname << " vertex no. " << line_no << ": "
fname             159 src/grid_GridAndTime_impl.h 	explicit grid(const std::string& fname);
fname              90 src/grid_deformation.cpp   Data(const std::string& fname) :hg {fname} {}
fname              94 src/grid_deformation.cpp Esfem::Grid::Deformation::Deformation(const std::string& fname)
fname              95 src/grid_deformation.cpp   :d_ptr {std::make_unique<Data>(fname)} {}
fname              55 src/io_dgf.cpp Handler::Data::Data(const string& fname)
fname              56 src/io_dgf.cpp   : digit_precision {static_cast<int>(get_precision(fname))},
fname              57 src/io_dgf.cpp     scal_dim_dof {calculate_dof(fname)},
fname              59 src/io_dgf.cpp     simplices {create_simplices(fname)}
fname              30 src/io_errorStream.cpp void cannot_open_file(const std::string& fname);
fname              32 src/io_errorStream.cpp Esfem::Io::Error_stream::Error_stream(const std::string& fname)
fname              33 src/io_errorStream.cpp   :ofs {fname, std::ios_base::app}
fname              36 src/io_errorStream.cpp   std::clog << "Opening " << fname << " for Error_stream" << std::endl;
fname              38 src/io_errorStream.cpp   if(!ofs) cannot_open_file(fname);
fname              61 src/io_errorStream.cpp void cannot_open_file(const std::string& fname){
fname              64 src/io_errorStream.cpp     "Could not open file: " << fname;
fname              36 src/maxH_main.cpp   explicit file(const string& fname)
fname              37 src/maxH_main.cpp     :filename {fname}
fname              41 src/maxH_main.cpp     if(!ifs) throw bad {Assert::compose(__FILE__, __LINE__, fname)};