Lines Matching defs:out
241 /// @param hours out parameter. This is set to the number of hours elapsed.
243 /// @param minutes out parameter. This is set to the number of minutes
246 /// @param seconds out parameter. This is se to the number of
678 /// figure out anything better (for now; maybe we should do something
815 /// @param out the output stream where to emit the prefix.
819 emit_prefix(const string& prog_name, ostream& out)
822 out << prog_name << ": ";
823 return out;
830 /// @param out the out stream to report errors to.
834 check_file(const string& path, ostream& out, const string& prog_name)
838 emit_prefix(prog_name, out) << "file " << path << " does not exist\n";
844 emit_prefix(prog_name, out) << path << " is not a regular file\n";
855 /// @param out the out stream to report errors to.
862 check_dir(const string& path, ostream& out, const string& prog_name)
866 emit_prefix(prog_name, out) << "path " << path << " does not exist\n";
872 emit_prefix(prog_name, out) << path << " is not a directory\n";
956 || (c <= 0x1F) // Rule out control characters
957 || (c >= 0x7F && c <= 0x9F)) // Rule out special extended
1323 | std::ios::out));