Lines Matching refs:info_output
1376 bool WriteObjectToFile(const std::string & path, T & object, std::ostream & info_output, bool binar…
1397 info_output << "Could not write to file " << path << std::endl;
1399 info_output << "Wrote " << path << std::endl;
1406 bool LoadObjectFromFile(const std::string & path, T & object, std::ostream & info_output, bool bina…
1408 info_output << "Loading " << path << "..." << std::endl;
1419 info_output << "Loaded " << path << std::endl;
1423 info_output << "File " << path << " had serialization errors" << std::endl;
1430 in.set_error_output(info_output);
1434 info_output << "File " << path << " had parsing errors" << std::endl;
1441 info_output << "Loaded " << path << std::endl;
1445 … info_output << "File " << path << " had serialization errors; trying to upgrade it" << std::endl;
1454 info_output << "File " << path << " not found" << std::endl;
1461 …LoadObjectFromFileOrCreateDefault(const std::string & path, T & object, std::ostream & info_output) in LoadObjectFromFileOrCreateDefault() argument
1463 info_output << "Loading " << path << "..." << std::endl; in LoadObjectFromFileOrCreateDefault()
1470 in.set_error_output(info_output); in LoadObjectFromFileOrCreateDefault()
1474 info_output << "File " << path << " had parsing errors; creating default" << std::endl; in LoadObjectFromFileOrCreateDefault()
1481 info_output << "Loaded " << path << std::endl; in LoadObjectFromFileOrCreateDefault()
1485 info_output << "File " << path << " had serialization errors; upgrading it" << std::endl; in LoadObjectFromFileOrCreateDefault()
1491 …info_output << "File " << path << " couldn't be upgraded during reflection read; creating default"… in LoadObjectFromFileOrCreateDefault()
1499 …info_output << "File " << path << " couldn't be upgraded during reflection write; creating default… in LoadObjectFromFileOrCreateDefault()
1502 WriteObjectToFile(path, object, info_output); in LoadObjectFromFileOrCreateDefault()
1510 info_output << "File " << path << " not found; creating default" << std::endl; in LoadObjectFromFileOrCreateDefault()
1516 WriteObjectToFile(path, object, info_output); in LoadObjectFromFileOrCreateDefault()